Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
de9c50d4
Commit
de9c50d4
authored
6 years ago
by
David Fairbrother
Browse files
Options
Downloads
Patches
Plain Diff
Re #22898 Remove newline chars in the script builder
parent
b1fa64f9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Framework/API/src/ScriptBuilder.cpp
+6
-1
6 additions, 1 deletion
Framework/API/src/ScriptBuilder.cpp
Framework/API/test/ScriptBuilderTest.h
+70
-0
70 additions, 0 deletions
Framework/API/test/ScriptBuilderTest.h
with
76 additions
and
1 deletion
Framework/API/src/ScriptBuilder.cpp
+
6
−
1
View file @
de9c50d4
...
...
@@ -12,6 +12,8 @@
#include
"MantidKernel/Property.h"
#include
"MantidKernel/PropertyHistory.h"
#include
<boost/range/algorithm/remove_if.hpp>
#include
<boost/algorithm/string/classification.hpp>
#include
<boost/utility.hpp>
#include
<set>
...
...
@@ -219,7 +221,10 @@ ScriptBuilder::buildAlgorithmString(const AlgorithmHistory &algHistory) {
propStr
.
erase
(
propStr
.
size
()
-
1
);
}
return
name
+
"("
+
propStr
+
")"
;
std
::
string
historyEntry
=
name
+
"("
+
propStr
+
")"
;
historyEntry
.
erase
(
boost
::
remove_if
(
historyEntry
,
boost
::
is_any_of
(
"
\n\r
"
)),
historyEntry
.
end
());
return
historyEntry
;
}
/**
...
...
This diff is collapsed.
Click to expand it.
Framework/API/test/ScriptBuilderTest.h
+
70
−
0
View file @
de9c50d4
...
...
@@ -85,6 +85,39 @@ class ScriptBuilderTest : public CxxTest::TestSuite {
}
};
class
NewlineAlgorithm
:
public
Algorithm
{
public:
NewlineAlgorithm
()
:
Algorithm
()
{}
~
NewlineAlgorithm
()
override
{}
const
std
::
string
name
()
const
override
{
return
"Foo
\n\r
Bar"
;
}
const
std
::
string
summary
()
const
override
{
return
"Test"
;
}
int
version
()
const
override
{
return
1
;
}
const
std
::
string
category
()
const
override
{
return
"Cat;Leopard;Mink"
;
}
void
afterPropertySet
(
const
std
::
string
&
name
)
override
{
if
(
name
==
"InputWorkspace"
)
declareProperty
(
"DynamicInputProperty"
,
""
);
}
void
init
()
override
{
declareProperty
(
make_unique
<
WorkspaceProperty
<
MatrixWorkspace
>>
(
"InputWorkspace"
,
""
,
Direction
::
Input
));
declareProperty
(
make_unique
<
WorkspaceProperty
<
MatrixWorkspace
>>
(
"OutputWorkspace"
,
""
,
Direction
::
Output
));
declareProperty
(
"PropertyA"
,
"Hello"
);
declareProperty
(
"PropertyB"
,
"World"
);
}
void
exec
()
override
{
declareProperty
(
"DynamicProperty1"
,
"value"
,
Direction
::
Output
);
setPropertyValue
(
"DynamicProperty1"
,
"outputValue"
);
boost
::
shared_ptr
<
MatrixWorkspace
>
output
=
boost
::
make_shared
<
WorkspaceTester
>
();
setProperty
(
"OutputWorkspace"
,
output
);
}
};
// middle layer algorithm executed by a top level algorithm
class
NestedAlgorithm
:
public
DataProcessorAlgorithm
{
public:
...
...
@@ -205,6 +238,7 @@ public:
Mantid
::
API
::
AlgorithmFactory
::
Instance
().
subscribe
<
NestedAlgorithm
>
();
Mantid
::
API
::
AlgorithmFactory
::
Instance
().
subscribe
<
BasicAlgorithm
>
();
Mantid
::
API
::
AlgorithmFactory
::
Instance
().
subscribe
<
SubAlgorithm
>
();
Mantid
::
API
::
AlgorithmFactory
::
Instance
().
subscribe
<
NewlineAlgorithm
>
();
Mantid
::
API
::
AlgorithmFactory
::
Instance
()
.
subscribe
<
AlgorithmWithDynamicProperty
>
();
}
...
...
@@ -217,6 +251,7 @@ public:
Mantid
::
API
::
AlgorithmFactory
::
Instance
().
unsubscribe
(
"SubAlgorithm"
,
1
);
Mantid
::
API
::
AlgorithmFactory
::
Instance
().
unsubscribe
(
"AlgorithmWithDynamicProperty"
,
1
);
Mantid
::
API
::
AlgorithmFactory
::
Instance
().
unsubscribe
(
"Foo
\n\r
Bar"
,
1
);
}
void
test_Build_Simple
()
{
...
...
@@ -254,6 +289,41 @@ public:
AnalysisDataService
::
Instance
().
remove
(
"test_input_workspace"
);
}
void
test_newline_chars_removed
()
{
// Check that any newline chars are removed
std
::
string
result
[]
=
{
"FooBar(InputWorkspace='test_input_workspace',"
" OutputWorkspace='test_output_workspace')"
,
""
};
boost
::
shared_ptr
<
WorkspaceTester
>
input
=
boost
::
make_shared
<
WorkspaceTester
>
();
AnalysisDataService
::
Instance
().
addOrReplace
(
"test_input_workspace"
,
input
);
auto
alg
=
AlgorithmFactory
::
Instance
().
create
(
"Foo
\n\r
Bar"
,
1
);
alg
->
initialize
();
alg
->
setRethrows
(
true
);
alg
->
setProperty
(
"InputWorkspace"
,
input
);
alg
->
setPropertyValue
(
"OutputWorkspace"
,
"test_output_workspace"
);
alg
->
execute
();
auto
ws
=
AnalysisDataService
::
Instance
().
retrieveWS
<
MatrixWorkspace
>
(
"test_output_workspace"
);
auto
wsHist
=
ws
->
getHistory
();
ScriptBuilder
builder
(
wsHist
.
createView
());
std
::
string
scriptText
=
builder
.
build
();
std
::
vector
<
std
::
string
>
scriptLines
;
boost
::
split
(
scriptLines
,
scriptText
,
boost
::
is_any_of
(
"
\n
"
));
int
i
=
0
;
for
(
auto
it
=
scriptLines
.
begin
();
it
!=
scriptLines
.
end
();
++
it
,
++
i
)
{
TS_ASSERT_EQUALS
(
*
it
,
result
[
i
])
}
AnalysisDataService
::
Instance
().
remove
(
"test_output_workspace"
);
AnalysisDataService
::
Instance
().
remove
(
"test_input_workspace"
);
}
void
test_Build_Simple_Timestamped
()
{
boost
::
shared_ptr
<
WorkspaceTester
>
input
=
boost
::
make_shared
<
WorkspaceTester
>
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment