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
c8bca045
Commit
c8bca045
authored
7 years ago
by
Elliot Oram
Browse files
Options
Downloads
Patches
Plain Diff
Add test for geometry and material generation functions
Refs #21214
parent
27e8ad24
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/test/ISISPowderCommonTest.py
+30
-1
30 additions, 1 deletion
scripts/test/ISISPowderCommonTest.py
with
30 additions
and
1 deletion
scripts/test/ISISPowderCommonTest.py
+
30
−
1
View file @
c8bca045
...
...
@@ -5,7 +5,7 @@ import unittest
from
six_shim
import
assertRaisesRegex
from
isis_powder.routines
import
common
,
common_enums
from
isis_powder.routines
import
common
,
common_enums
,
SampleDetails
class
ISISPowderCommonTest
(
unittest
.
TestCase
):
...
...
@@ -519,6 +519,35 @@ class ISISPowderCommonTest(unittest.TestCase):
mantid
.
DeleteWorkspace
(
sample_ws
)
def
test_generate_sample_geometry
(
self
):
# Create mock SampleDetails
sample_details
=
SampleDetails
(
height
=
4.0
,
radius
=
3.0
,
center
=
[
0.5
,
1.0
,
-
3.2
],
shape
=
'
cylinder
'
)
# Run test
result
=
common
.
generate_sample_geometry
(
sample_details
)
# Validate result
expected
=
{
'
Shape
'
:
'
Cylinder
'
,
'
Height
'
:
4.0
,
'
Radius
'
:
3.0
,
'
Center
'
:
[
0.5
,
1.0
,
-
3.2
]}
self
.
assertEquals
(
result
,
expected
)
def
test_generate_sample_material
(
self
):
# Create mock SampleDetails
sample_details
=
SampleDetails
(
height
=
1.0
,
radius
=
1.0
,
center
=
[
0.0
,
0.0
,
0.0
])
sample_details
.
set_material
(
chemical_formula
=
'
Si
'
,
number_density
=
1.5
)
sample_details
.
set_material_properties
(
absorption_cross_section
=
123
,
scattering_cross_section
=
456
)
# Run test
result
=
common
.
generate_sample_material
(
sample_details
)
# Validate
expected
=
{
'
ChemicalFormula
'
:
'
Si
'
,
'
SampleNumberDensity
'
:
1.5
,
'
AttenuationXSection
'
:
123.0
,
'
ScatteringXSection
'
:
456.0
}
self
.
assertEquals
(
result
,
expected
)
class
ISISPowderMockInst
(
object
):
def
__init__
(
self
,
file_ext
=
None
):
...
...
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