Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CastorScript
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
atlas-tdaq-software
CastorScript
Merge requests
!29
Resolve "Initial Publish uptime of CS instance to IS"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Initial Publish uptime of CS instance to IS"
22-initial-publish-uptime-of-cs-instance-to-is
into
master
Overview
26
Commits
25
Pipelines
14
Changes
2
Merged
Jonas Ladefoged Holm
requested to merge
22-initial-publish-uptime-of-cs-instance-to-is
into
master
5 years ago
Overview
16
Commits
25
Pipelines
14
Changes
2
Expand
Closes
#22 (closed)
Edited
5 years ago
by
Jonas Ladefoged Holm
0
0
Merge request reports
Viewing commit
95d3b39d
Prev
Next
Show latest version
2 files
+
60
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
95d3b39d
Initial idea of how the IS update system should work
· 95d3b39d
Jonas
authored
5 years ago
Script/UnitTests/InfoServiceThread_Test.py
+
15
−
9
Options
@@ -23,22 +23,28 @@ class TestInfoServiceThread(unittest.TestCase):
## we mock the configuration
self
.
mock_cfg
=
mock
.
create_autospec
(
ConfigHolder
)
self
.
mock_cfg
.
configure_mock
(
partition
=
"
initial
"
,
LogDir
=
""
,
LogLevel
=
""
)
self
.
mock_cfg
.
configure_mock
(
partition
=
"
initial
"
,
LogDir
=
""
,
LogLevel
=
""
,
FileName
=
"
Conf_test.cfg
"
)
## we're not interested in any logging for this test
with
mock
.
patch
(
"
cs.Threads.InfoServiceThread.enable_file_logging
"
):
self
.
info_thread
=
InfoServiceThread
(
self
.
mock_cfg
,
self
.
mock_event
)
class
TestInfoServiceExit
(
TestInfoServiceThread
):
def
test_it_should_stop_thread_execution
(
self
):
## we're not interested in any logging for this test
with
mock
.
patch
(
"
cs.Threads.InfoServiceThread.enable_file_logging
"
):
# I run the thread
info_thread
=
InfoServiceThread
(
self
.
mock_cfg
,
self
.
mock_event
)
info_thread
.
start
()
# I run the thread
self
.
info_thread
.
start
()
# and shut it down
info_thread
.
info_service_exit
()
info_thread
.
join
(
3.0
)
self
.
info_thread
.
info_service_exit
()
self
.
info_thread
.
join
(
3.0
)
# and I see that the thread has been killed
self
.
assertFalse
(
info_thread
.
is_alive
(),
msg
=
"
InfoService Thread didn
'
t die
"
)
self
.
assertFalse
(
self
.
info_thread
.
is_alive
(),
msg
=
"
InfoService Thread didn
'
t die
"
)
class
TestGetProcessUptime
(
TestInfoServiceThread
):
def
test_uptime_should_be_positive
(
self
):
self
.
assertGreaterEqual
(
self
.
info_thread
.
get_process_uptime_in_seconds
(),
0
)
if
__name__
==
"
__main__
"
:
unittest
.
main
()
Loading