Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
WindEnergyToolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
The Gitlab server is succesfully updated to version 17.10.3
Show more breadcrumbs
wtlib
WindEnergyToolbox
Commits
8d600e24
Commit
8d600e24
authored
9 years ago
by
mads
Browse files
Options
Downloads
Patches
Plain Diff
logfile test fixed
parent
c782e8f1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
wetb/hawc2/log_file.py
+12
-12
12 additions, 12 deletions
wetb/hawc2/log_file.py
wetb/hawc2/tests/test_logfile.py
+10
-10
10 additions, 10 deletions
wetb/hawc2/tests/test_logfile.py
wetb/utils/tests/test_caching.py
+0
-1
0 additions, 1 deletion
wetb/utils/tests/test_caching.py
with
22 additions
and
23 deletions
wetb/hawc2/log_file.py
+
12
−
12
View file @
8d600e24
...
...
@@ -15,18 +15,18 @@ INITIALIZATION = 'Initializing simulation'
SIMULATING
=
"
Simulating
"
DONE
=
"
Simulation succeded
"
def
is_file_open
(
filename
):
try
:
os
.
rename
(
filename
,
filename
+
"
_
"
)
os
.
rename
(
filename
+
"
_
"
,
filename
)
return
False
except
OSError
as
e
:
if
"
The process cannot access the file because it is being used by another process
"
not
in
str
(
e
):
raise
if
os
.
path
.
isfile
(
filename
+
"
_
"
):
os
.
remove
(
filename
+
"
_
"
)
return
True
#
def is_file_open(filename):
#
try:
#
os.rename(filename, filename + "_")
#
os.rename(filename + "_", filename)
#
return False
#
except OSError as e:
#
if "The process cannot access the file because it is being used by another process" not in str(e):
#
raise
#
#
if os.path.isfile(filename + "_"):
#
os.remove(filename + "_")
#
return True
class
LogFile
(
object
):
def
__init__
(
self
,
log_filename
,
time_stop
):
...
...
This diff is collapsed.
Click to expand it.
wetb/hawc2/tests/test_logfile.py
+
10
−
10
View file @
8d600e24
...
...
@@ -4,7 +4,7 @@ Created on 18/11/2015
@author: MMPE
'''
import
unittest
from
wetb.hawc2.log_file
import
LogFile
,
is_file_open
,
\
from
wetb.hawc2.log_file
import
LogFile
,
\
INITIALIZATION
,
SIMULATING
,
DONE
,
PENDING
import
time
from
wetb.hawc2
import
log_file
...
...
@@ -45,13 +45,13 @@ class TestLogFile(unittest.TestCase):
self
.
assertEqual
(
logfile
.
status
,
log_file
.
MISSING
)
def
test_is_file_open
(
self
):
f
=
self
.
tfp
+
'
logfiles/test.log
'
with
open
(
f
,
'
a+
'
):
self
.
assertTrue
(
is_file_open
(
f
))
with
open
(
f
,
'
r
'
):
self
.
assertTrue
(
is_file_open
(
f
))
self
.
assertFalse
(
is_file_open
(
f
))
#
def test_is_file_open(self):
#
f = self.tfp + 'logfiles/test.log'
#
with open(f, 'a+'):
#
self.assertTrue(is_file_open(f))
#
with open(f, 'r'):
#
self.assertTrue(is_file_open(f))
#
self.assertFalse(is_file_open(f))
def
test_simulation_init_error
(
self
):
f
=
self
.
tfp
+
'
logfiles/init_error.log
'
...
...
@@ -180,7 +180,7 @@ class TestLogFile(unittest.TestCase):
estimated_simulation_time
=
None
while
logfile
.
pct
>=
0
and
logfile
.
status
!=
DONE
:
if
estimated_simulation_time
is
None
and
logfile
.
remaining_time
is
not
None
:
endtime
=
time
.
time
()
+
logfile
.
remaining_time
estimated_
endtime
=
time
.
time
()
+
logfile
.
remaining_time
#print (logfile.pct, logfile.remaining_time, logfile.lastline)
logfile
.
update_status
()
if
logfile
.
status
!=
last_status
or
logfile
.
pct
!=
last_pct
:
...
...
@@ -188,7 +188,7 @@ class TestLogFile(unittest.TestCase):
last_pct
=
logfile
.
pct
time
.
sleep
(
0.1
)
t
.
join
()
self
.
assertLess
(
abs
(
time
.
time
()
-
endtime
),
0.1
)
self
.
assertLess
(
abs
(
time
.
time
()
-
estimated_
endtime
),
0.1
5
)
os
.
remove
(
logfile
.
filename
)
...
...
This diff is collapsed.
Click to expand it.
wetb/utils/tests/test_caching.py
+
0
−
1
View file @
8d600e24
...
...
@@ -55,7 +55,6 @@ class TestCacheProperty(unittest.TestCase):
def
test_cache_function
(
self
):
#pdb.set_trace()
e
=
Example
()
self
.
assertAlmostEqual
(
get_time
(
e
.
test_cache_function
)()[
1
],
1
,
places
=
2
)
self
.
assertAlmostEqual
(
get_time
(
e
.
test_cache_function
)()[
1
],
0
,
places
=
2
)
...
...
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