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
Matevz Golob
wendelin
Commits
1a1a159e
Commit
1a1a159e
authored
Jul 01, 2015
by
Ivan Tyagov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do test by transforming only part (tail) of appended data.
parent
501d29e9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
24 deletions
+33
-24
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/DataStream_transform.xml
...eItem/portal_skins/erp5_wendelin/DataStream_transform.xml
+0
-4
bt5/erp5_wendelin/TestTemplateItem/portal_components/test.erp5.testWendelin.py
...tTemplateItem/portal_components/test.erp5.testWendelin.py
+27
-14
bt5/erp5_wendelin/TestTemplateItem/portal_components/test.erp5.testWendelin.xml
...TemplateItem/portal_components/test.erp5.testWendelin.xml
+6
-6
No files found.
bt5/erp5_wendelin/SkinTemplateItem/portal_skins/erp5_wendelin/DataStream_transform.xml
View file @
1a1a159e
...
...
@@ -57,8 +57,6 @@
* transform_script_id - the script which will transform data\n
* chunk_length - the length of a chunk\n
"""\n
data_length = context.getSize()\n
\n
start = 0\n
end = chunk_length\n
context.activate().DataStream_readChunkListAndTransform( \\\n
...
...
@@ -67,8 +65,6 @@ context.activate().DataStream_readChunkListAndTransform( \\\n
chunk_length, \\\n
transform_script_id, \\\n
data_array_reference)\n
\n
return data_length\n
</string>
</value>
</item>
<item>
...
...
bt5/erp5_wendelin/TestTemplateItem/portal_components/test.erp5.testWendelin.py
View file @
1a1a159e
...
...
@@ -58,7 +58,6 @@ class Test(ERP5TypeTestCase):
# here, you can create the categories and objects your test will depend on
pass
def
stepSetupIngestion
(
self
,
reference
):
"""
Generic step.
...
...
@@ -106,7 +105,7 @@ class Test(ERP5TypeTestCase):
version
=
'001'
)
data_array
.
validate
()
self
.
tic
()
return
ingestion_policy
,
data_supply
,
data_stream
,
data_array
def
test_0_import
(
self
):
...
...
@@ -168,32 +167,48 @@ class Test(ERP5TypeTestCase):
reference
=
getRandomString
()
number_string_list
=
[]
for
my_list
in
list
(
chunks
(
range
(
0
,
1000
0
1
),
10
)):
for
my_list
in
list
(
chunks
(
range
(
0
,
10001
),
10
)):
number_string_list
.
append
(
','
.
join
([
str
(
x
)
for
x
in
my_list
]))
real_data
=
'
\
n
'
.
join
(
number_string_list
)
# make sure real_data tail is also a full line
real_data
+=
'
\
n
'
ingestion_policy
,
data_supply
,
data_stream
,
data_array
=
self
.
stepSetupIngestion
(
reference
)
data_stream
.
appendData
(
real_data
)
self
.
tic
()
self
.
assertEqual
(
None
,
data_array
.
getArray
())
# override DataStream_transformTail to actually do transformation on appenData
start
=
data_stream
.
getSize
()
script_id
=
'DataStream_transformTail'
script_content_list
=
[
'
**kw
'
,
"""
script_content_list
=
[
''
,
"""
# created by testWendelin.test_01_1_IngestionTail
context.DataStream_transform(
\
chunk_length = 10450,
\
transform_script_id = 'DataStream_copyCSVToDataArray',
data_array_reference = context.getReference())"""
]
start = %s
end = %s
context.activate().DataStream_readChunkListAndTransform(
\
start,
\
end,
\
%s,
\
transform_script_id = 'DataStream_copyCSVToDataArray',
\
data_array_reference=context.getReference())"""
%
(
start
,
start
+
10450
,
10450
)]
createZODBPythonScript
(
portal
.
portal_skins
.
custom
,
script_id
,
*
script_content_list
)
number_string_list
=
[]
for
my_list
in
list
(
chunks
(
range
(
10001
,
200001
),
10
)):
number_string_list
.
append
(
','
.
join
([
str
(
x
)
for
x
in
my_list
]))
real_data
=
'
\
n
'
.
join
(
number_string_list
)
# make sure real_data tail is also a full line
real_data
+=
'
\
n
'
# append data to Data Stream and check array.
# append data to Data Stream and check array
which should be feed now
.
data_stream
.
appendData
(
real_data
)
self
.
tic
()
# test that extracted array contains same values as input CSV
zarray
=
data_array
.
getArray
()
self
.
assertEqual
(
np
.
average
(
zarray
),
np
.
average
(
np
.
arange
(
100001
)))
self
.
assertTrue
(
np
.
array_equal
(
zarray
,
np
.
arange
(
100001
)))
self
.
assertEqual
(
np
.
average
(
zarray
),
np
.
average
(
np
.
arange
(
1000
1
,
2000
01
)))
self
.
assertTrue
(
np
.
array_equal
(
zarray
,
np
.
arange
(
1000
1
,
2000
01
)))
# clean up script
portal
.
portal_skins
.
custom
.
manage_delObjects
([
script_id
,])
...
...
@@ -235,14 +250,12 @@ context.DataStream_transform(\
new_array
=
np
.
arange
(
1
,
17
).
reshape
((
4
,
4
))
persistent_zbig_array
[:,:]
=
new_array
self
.
assertEquals
(
new_array
.
shape
,
persistent_zbig_array
.
shape
)
# (enable when new wendelin.core released as it can kill system)
self
.
assertTrue
(
np
.
array_equal
(
new_array
,
persistent_zbig_array
))
# test set element in zbig array
persistent_zbig_array
[:
2
,
2
]
=
0
self
.
assertFalse
(
np
.
array_equal
(
new_array
,
persistent_zbig_array
))
# resize Zbig Array
(enable when new wendelin.core released as it can kill system)
# resize Zbig Array
persistent_zbig_array
=
np
.
resize
(
persistent_zbig_array
,
(
100
,
100
))
self
.
assertNotEquals
(
pure_numpy_array
.
shape
,
persistent_zbig_array
.
shape
)
\ No newline at end of file
bt5/erp5_wendelin/TestTemplateItem/portal_components/test.erp5.testWendelin.xml
View file @
1a1a159e
...
...
@@ -47,12 +47,12 @@
<value>
<tuple>
<string>
W: 39, 8: Unused variable \'n\' (unused-variable)
</string>
<string>
W:11
7
, 4: Unused variable \'scipy\' (unused-variable)
</string>
<string>
W:11
9
, 4: Unused variable \'pandas\' (unused-variable)
</string>
<string>
W:11
8
, 4: Unused variable \'sklearn\' (unused-variable)
</string>
<string>
W:13
7
, 22: Unused variable \'data_supply\' (unused-variable)
</string>
<string>
W:17
7
, 4: Unused variable \'ingestion_policy\' (unused-variable)
</string>
<string>
W:17
7
, 22: Unused variable \'data_supply\' (unused-variable)
</string>
<string>
W:11
6
, 4: Unused variable \'scipy\' (unused-variable)
</string>
<string>
W:11
8
, 4: Unused variable \'pandas\' (unused-variable)
</string>
<string>
W:11
7
, 4: Unused variable \'sklearn\' (unused-variable)
</string>
<string>
W:13
6
, 22: Unused variable \'data_supply\' (unused-variable)
</string>
<string>
W:17
6
, 4: Unused variable \'ingestion_policy\' (unused-variable)
</string>
<string>
W:17
6
, 22: Unused variable \'data_supply\' (unused-variable)
</string>
</tuple>
</value>
</item>
...
...
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