Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Roque
wendelin
Commits
1f27491e
Commit
1f27491e
authored
Jul 14, 2022
by
Levin Zimmermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
erp5_wendelin: Add test_16_createDataAnalysisFromDataTransformationWithoutResolution
parent
929f7b7a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
128 additions
and
1 deletion
+128
-1
bt5/erp5_wendelin/TestTemplateItem/portal_components/test.erp5.testWendelin.py
...tTemplateItem/portal_components/test.erp5.testWendelin.py
+128
-1
No files found.
bt5/erp5_wendelin/TestTemplateItem/portal_components/test.erp5.testWendelin.py
View file @
1f27491e
...
@@ -146,7 +146,6 @@ class Test(ERP5TypeTestCase):
...
@@ -146,7 +146,6 @@ class Test(ERP5TypeTestCase):
data_stream
.
setData
(
None
)
data_stream
.
setData
(
None
)
self
.
tic
()
self
.
tic
()
def
test_01_1_IngestionFromOldFluentd
(
self
):
def
test_01_1_IngestionFromOldFluentd
(
self
):
self
.
test_01_IngestionFromFluentd
(
True
)
self
.
test_01_IngestionFromFluentd
(
True
)
...
@@ -633,3 +632,131 @@ result = [x for x in data_bucket_stream.getBucketIndexKeySequenceByIndex()]
...
@@ -633,3 +632,131 @@ result = [x for x in data_bucket_stream.getBucketIndexKeySequenceByIndex()]
self
.
assertEqual
(
data_array
.
getArrayDtypeNames
(),
(
dtype_name0
,))
self
.
assertEqual
(
data_array
.
getArrayDtypeNames
(),
(
dtype_name0
,))
data_array
.
setArrayDtypeNames
((
dtype_name1
,))
data_array
.
setArrayDtypeNames
((
dtype_name1
,))
self
.
assertEqual
(
data_array
.
getArrayDtypeNames
(),
(
dtype_name1
,))
self
.
assertEqual
(
data_array
.
getArrayDtypeNames
(),
(
dtype_name1
,))
def
test_16_createDataAnalysisFromDataTransformationWithoutResolution
(
self
):
"""
Ensure data analysis are created from data transformation without any specified
variation categories.
"""
portal
=
self
.
portal
title_prefix
=
"Wendelin Test 16"
test_function_to_organisation
=
{}
for
test_function
in
(
"source"
,
"destination"
):
organisation
=
portal
.
organisation_module
.
newContent
(
portal_typle
=
"Organisation"
,
title
=
"%s %s"
%
(
title_prefix
,
test_function
),
)
self
.
addCleanup
(
self
.
_removeDocument
,
organisation
)
organisation
.
validate
()
test_function_to_organisation
.
update
({
test_function
:
organisation
})
data_operation
=
portal
.
data_operation_module
.
newContent
(
portal_typle
=
"Data Operation"
,
title
=
"%s Data Operation"
%
title_prefix
,
script_id
=
"DataAnalysisLine_testWendelinConvertAToB"
,
)
self
.
addCleanup
(
self
.
_removeDocument
,
data_operation
)
data_operation
.
validate
()
resource
=
portal
.
data_product_module
.
newContent
(
portal_type
=
"Data Product"
,
title
=
"%s Data Product"
%
title_prefix
,
individual_variation_base_category_list
=
[
"resolution"
],
quantity_unit
=
"unit/piece"
)
self
.
addCleanup
(
self
.
_removeDocument
,
resource
)
resource
.
validate
()
resource_resolution
=
resource
.
newContent
(
portal_type
=
"Product Individual Variation"
,
title
=
"20S"
,
)
specialise_data_transformation
=
portal
.
data_transformation_module
.
newContent
(
portal_type
=
"Data Transformation"
,
title
=
"%s Specialise Data Transformation"
%
title_prefix
,
resource
=
resource
.
getRelativeUrl
(),
)
self
.
addCleanup
(
self
.
_removeDocument
,
specialise_data_transformation
)
specialise_data_transformation
.
validate
()
specialise_data_supply
=
portal
.
data_supply_module
.
newContent
(
portal_type
=
"Data Supply"
,
title
=
"%s Specialise Data Supply"
%
title_prefix
,
)
self
.
addCleanup
(
self
.
_removeDocument
,
specialise_data_supply
)
specialise_data_supply
.
validate
()
initial_data_analysis
=
portal
.
data_analysis_module
.
newContent
(
portal_type
=
"Data Analysis"
,
title
=
"%s Import Raw Data"
%
title_prefix
,
reference
=
"wendelin.test.16.initial.data.analysis"
,
resource
=
resource
.
getRelativeUrl
(),
source
=
test_function_to_organisation
[
'source'
].
getRelativeUrl
(),
destination
=
test_function_to_organisation
[
'destination'
].
getRelativeUrl
(),
specialise_value_list
=
[
specialise_data_supply
.
getRelativeUrl
(),
specialise_data_transformation
.
getRelativeUrl
()
],
)
self
.
addCleanup
(
self
.
_removeDocument
,
initial_data_analysis
)
initial_data_analysis
.
start
()
initial_data_analysis
.
newContent
(
portal_type
=
"Data Analysis Line"
,
title
=
"Raw Array"
,
reference
=
"out_array"
,
resource
=
resource
.
getRelativeUrl
(),
quantity
=
1
,
quantity_unit
=
"unit/piece"
,
variation_category_list
=
[
"resolution/%s"
%
resource_resolution
.
getRelativeUrl
(),
"resource/%s"
%
resource
.
getRelativeUrl
(),
],
use
=
"use/big_data/ingestion/stream"
,
)
initial_data_analysis
.
newContent
(
portal_type
=
"Data Analysis Line"
,
title
=
"Convert A to B"
,
reference
=
"data_operation"
,
resource
=
data_operation
.
getRelativeUrl
(),
quantity
=
1
,
quantity_unit
=
"unit/piece"
,
)
data_transformation
=
portal
.
data_transformation_module
.
newContent
(
portal_type
=
"Data Transformation"
,
title
=
"%s Data Transformation"
%
title_prefix
,
resource
=
resource
.
getRelativeUrl
(),
)
self
.
addCleanup
(
self
.
_removeDocument
,
data_transformation
)
data_transformation
.
validate
()
data_transformation
.
newContent
(
portal_type
=
"Data Transformation Operation Line"
,
title
=
"Convert A to B"
,
reference
=
"data_operation"
,
resource
=
data_operation
.
getRelativeUrl
(),
quantity
=
1
,
quantity_unit
=
"unit/piece"
,
)
def
getDataAnalysisByTitle
(
title
):
return
portal
.
portal_catalog
.
getResultValue
(
portal_type
=
"Data Analysis"
,
title
=
title
)
data_analysis_title_list
=
[
specialise_data_transformation
.
getTitle
(),
data_transformation
.
getTitle
()]
for
data_analysis_title
in
data_analysis_title_list
:
self
.
assertEqual
(
getDataAnalysisByTitle
(
data_analysis_title
),
None
)
self
.
commit
()
self
.
tic
()
self
.
portal
.
portal_alarms
.
wendelin_handle_analysis
.
activeSense
()
self
.
tic
()
for
data_analysis_title
in
data_analysis_title_list
:
data_analysis
=
getDataAnalysisByTitle
(
data_analysis_title
)
self
.
assertNotEqual
(
data_analysis
,
None
)
self
.
addCleanup
(
self
.
_removeDocument
,
data_analysis
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment