Skip to content

ggkochanski/datastandard-report-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Demo Project

This is a demo project, which shows some of the data model interactions we do in the PDX project.

The project objective is to generate a tabular report in CSV format from our data standard specification.

Please fork the project to you own bitbucket, github, or other git hosting account, and give us access to the repository holding your solution - or alternatively send send us a zip-file with the solution. Please make the repository unvailable again after the interview.

IDE

The assignment is also given to applicants without Java knowledge, so here is a small guide on how to get started. Download and install OpenJDK 11 and IntelliJ Community Edition, or another IDE of your preference. In IntelliJ, simply open the build file, build.gradle, as a project. You might have to setup the SDK.

The project can also be built, tested, and run using gradle in the shell. Run the gradle tasks command to see the list of available tasks.

Data Standard

We have a data standard, which describes the context for our products.

The data standard has a list of categories, which disjointly categorize the products. The categories are linked together in a hierarchy, where a category points to it's parent. E.g., for a Clothing category, we could have sub-categories T-Shirts and Jeans so the resulting category hierarchies would be Clothing/T-Shirts and Clothing/Jenas. There is always a single root, where the parent is not set.

When viewing a category, the attributes visible are the total set of attributes linked to a given category, as well as any attribute linked to any parent category.

The data standard also has a set of attributes, which describe the data on the products. The attribute has a type, which specifies the type of the value. E.g., an attribute could be a Description of type string and a Price of type decimal. The attributes are linked into the categories using attribute links. Attributes available for a given category are determined by including all attributes linked to any category in the corresponding category hierarchy, all the way to the root category. E.g., attributes defined in the Clothing category are also available for products in the T-Shirts and Jeans categories.

Some attributes also link in other attributes, which means that this attribute is a composite definition. An attribute in a composite definition can also be a composite.

The data standard also defines a set of attribute groups, which is an ability to scope the attributes by their purpose. One attribute can be linked in to multiple attribute groups. E.g., you could have a group with all assets, and other groups also including some assets. It is a tool which helps filtering the attributes.

Some data standards have more than 10,000 categories and attributes. The number of available attributes in a category can exceed 500.

There is a trivial test data standard in the datastandard.json test resource. The object model for the data standard is defined in the model package.

Deliveries

The assignment is to implement the report method in the Reportservice service. The method takes a data standard object and a category id as argument, and should return a stream of stream of strings. The outer stream is the tabular rows, and the inner streams are the cells in a row. The controller endpoint makes a naïve conversion of this to csv.

There is a test setup, which can be used to exercise the service call.

The deliveries are split into 3 levels. You do not have to support all levels at the same time, it is just a way of splitting the assignment in parts, to set goals during the development. The added content from the previous level is in bold.

Level 1

The report should contain all attributes visible in the defined category. Produce a report like this on the test data standard:

+---------------+-----------------+-----------------------------+-----------+
| Category Name | Attribute Name  | Description                 | Type      |
+---------------+-----------------+-----------------------------+-----------+
| Root          | String Value    |                             | string    |
+---------------+-----------------+-----------------------------+-----------+
| Leaf          | Composite Value | Composite Value Description | composite |
+---------------+-----------------+-----------------------------+-----------+

The fields are:

  • Category Name: the name of the category, the attribute is linked in to.
  • Attribute Name: the name of the attribute.
  • Description: the description of the attribute.
  • Type: the type id of the attribute.

Level 2

Produce a report like this on the test data standard:

+---------------+-----------------+-----------------------------+-------------+---------+
| Category Name | Attribute Name  | Description                 | Type        | Groups  |
+---------------+-----------------+-----------------------------+-------------+---------+
| Root          | String Value*   |                             | string      | All     |
+---------------+-----------------+-----------------------------+-------------+---------+
| Leaf          | Composite Value | Composite Value Description | composite[] | All     |
|               |                 |                             |             | Complex |
+---------------+-----------------+-----------------------------+-------------+---------+

The fields are:

  • Category Name: the name of the category, the attribute is linked in to.
  • Attribute Name: the name of the attribute, with an asterisk (*) appended, if the link to the attribute has the optional field set to false.
  • Description: the description of the attribute.
  • Type: the type id of the attribute, with brackets ([]) appended, if the multiValue field is set to true.
  • Groups: the names of the attribute groups listed in the groudIds field, separated by new lines.

Level 3

Produce a report like this on the test data standard:

+---------------+-----------------+-----------------------------+--------------------------+---------+
| Category Name | Attribute Name  | Description                 | Type                     | Groups  |
+---------------+-----------------+-----------------------------+--------------------------+---------+
| Root          | String Value*   |                             | string                   | All     |
+---------------+-----------------+-----------------------------+--------------------------+---------+
| Leaf          | Composite Value | Composite Value Description | composite{               | All     |
|               |                 |                             |   Nested Value*: integer | Complex |
|               |                 |                             | }[]                      |         |
+---------------+-----------------+-----------------------------+--------------------------+---------+

The fields are:

  • Category Name: the name of the category, the attribute is linked in to.
  • Attribute Name: the name of the attribute, with an asterisk (*) appended, if the link to the attribute has the optional field set to false.
  • Description: the description of the attribute.
  • Type: the type id of the attribute, with brackets ([]) appended, if the the multiValue field is set to true. If the attributeLinks field is set, then the links are _recursively expanded in braces ({}) as: two spaces, attribute name with optional marker, colon (:), and expanded type, separated by new lines.
  • Groups: the name of the attribute groups listed in the groudIds field, separated by new lines.

Real Data

If the application is started, it can be tested on real data as

curl -s -u key:secret http://localhost:8080/report/acme/T_SHIRTS

The expected content of this call is exported to the t-shirts.csv file, and imported into the corresponding T-Shirts.xslx file.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages