Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean saved results #58

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions src/diffpy/srfit/fitbase/fitresults.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,15 +499,7 @@ def saveResults(self, filename, header = "", footer = "", update = False):
header -- A header to add to the output (default "")
footer -- A footer to add to the output (default "")
update -- Flag indicating whether to call update() (default False).

"""
# Save the time and user
from time import ctime
from getpass import getuser
myheader = "Results written: " + ctime() + "\n"
myheader += "produced by " + getuser() + "\n"
header = myheader + header

res = self.formatResults(header, footer, update)
f = open(filename, 'w')
f.write(res)
Expand Down
37 changes: 36 additions & 1 deletion src/diffpy/srfit/tests/testfitresults.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,41 @@
import unittest

from diffpy.srfit.fitbase.fitrecipe import FitRecipe
from diffpy.srfit.fitbase.fitresults import FitResults
from diffpy.srfit.fitbase.fitresults import initializeRecipe
from diffpy.srfit.tests.utils import datafile
from diffpy.srfit.tests.utils import capturefilewrite

# ----------------------------------------------------------------------------

class TestFitResults(unittest.TestCase):

@classmethod
def setUpClass(cls):
blankfit = FitRecipe()
cls.blank = FitResults(blankfit)
return

@classmethod
def tearDownClass(cls):
cls.blank = None
return

def setUp(self):
return


def test_saveResults(self):
"check FitResults.saveResults()"
txt = capturefilewrite(self.blank.saveResults)
lines = txt.split('\n')
self.assertFalse(lines[0].startswith('Results written'))
self.assertFalse(lines[0].startswith('produced by'))
return

# end of class TestFitResults

# ----------------------------------------------------------------------------

class TestInitializeRecipe(unittest.TestCase):

Expand Down Expand Up @@ -76,6 +108,9 @@ def testInitializeFromString(self):
self.assertAlmostEqual(self.x0val, recipe.x0.value)
return

if __name__ == "__main__":
# end of class TestInitializeRecipe

# ----------------------------------------------------------------------------

if __name__ == "__main__":
unittest.main()
35 changes: 34 additions & 1 deletion src/diffpy/srfit/tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
"""Helper routines for testing."""

import sys
import os.path
import tempfile

import six

import diffpy.srfit.equation.literals as literals
Expand Down Expand Up @@ -109,4 +112,34 @@ def capturestdout(f, *args, **kwargs):
sys.stdout = savestdout
return fp.getvalue()

# End of file

def capturefilewrite(f, *args, **kwargs):
"""Capture output written by function to a temporary file.

Parameters
----------
f : callable
The function which writes output to some file path.
It must take filename as its first argument.

Returns
-------
content : str
The content written to the file by the `f` call.

Raises
------
FileNotFoundError
When `f` call does not write the specified file argument.
"""
tf = tempfile.NamedTemporaryFile()
tf.close()
assert not os.path.exists(tf.name)
try:
f(tf.name, *args, **kwargs)
with open(tf.name) as fp:
rv = fp.read()
finally:
if os.path.exists(tf.name):
os.remove(tf.name)
return rv