[2024-12-18] Adding tests for new syntax

- Moving old tests into `testInitSyntax.py`
- This syntax is still supported
- `testInitSyntax.py` also tests calling tic() before toc(), which is
not possible with the setup of `test.py`. This should be moved to its
own file soon.
This commit is contained in:
Andrew Conlin 2024-12-18 12:28:00 +00:00
parent a5475a460b
commit bec55635f9
2 changed files with 137 additions and 52 deletions

View File

@ -1,43 +1,41 @@
import pytest import pytest
import tictoc from tictoc import tic,toc
import time import time
import math import math
@pytest.fixture
def t():
t = tictoc.init()
return t
class testFunctionality: class testFunctionality:
def testBasic(self, t): def testBasic(self):
t.tic() tic()
print("test") print("test")
t.toc() results = toc()
assert t.results.seconds > 0 assert results.seconds > 0
def testOverwrite(self, t): def testMultipleGlobalCalls(self):
t.tic() tic()
print("test") print("test")
t.toc() results = toc()
firstResult = t.results.seconds
print("test2") print("test2")
t.toc() results2 = toc()
secondResult = t.results.seconds
assert firstResult < secondResult assert results.seconds < results2.seconds
def testMultipleCalls(self):
first = tic()
print("test")
second = tic()
print("test2")
secondResult = toc(second).seconds
firstResult = toc(first).seconds
assert firstResult > secondResult
class testInvalid: class testInvalid:
def testNoInit(self): def testNonTicInputForToc(self):
with pytest.raises(Exception): with pytest.raises(Exception):
t.tic() tic()
print("test")
def testTocBeforeTic(self, t): toc(1)
with pytest.raises(Exception):
t.toc()
@pytest.mark.parametrize("sleepTime", [0.05, 0.5, 1]) @pytest.mark.parametrize("sleepTime", [0.05, 0.5, 1])
class testAccuracy: class testAccuracy:
@ -45,42 +43,47 @@ class testAccuracy:
def tol(self): def tol(self):
return 0.0006 return 0.0006
def testSingleCall(self, t, sleepTime, tol): def testSingleCall(self, sleepTime, tol):
t.tic() tic()
time.sleep(sleepTime) time.sleep(sleepTime)
t.toc() results = toc()
assert (t.results.seconds > sleepTime) & ( assert (results.seconds < sleepTime+tol)
t.results.seconds < (t.results.seconds + tol)
)
def testMultipleCalls(self, t, sleepTime, tol): def testMultipleGlobalCalls(self, sleepTime, tol):
t.tic() tic()
time.sleep(sleepTime) time.sleep(sleepTime)
t.toc() toc()
time.sleep(sleepTime) time.sleep(sleepTime)
t.toc() results = toc()
assert (t.results.seconds > sleepTime * 2) & ( assert (results.seconds < (sleepTime * 2)+tol)
t.results.seconds < (t.results.seconds + tol)
)
def testMultipleCalls(self, sleepTime, tol):
first = tic()
time.sleep(sleepTime)
second = tic()
time.sleep(sleepTime)
results2 = toc(second)
results = toc(first)
assert (results.seconds < (sleepTime * 2)+tol)
assert (results2.seconds < sleepTime+tol)
class testConsistency: class testConsistency:
def testMicros(self, t): def testMicros(self):
t.tic() tic()
print("test") print("test")
t.toc() results = toc()
assert t.results.micros == (math.floor(t.results.nanos * pow(10, -3))) assert results.micros == (math.floor(results.nanos * pow(10, -3)))
def testMillis(self, t): def testMillis(self):
t.tic() tic()
print("test") print("test")
t.toc() results = toc()
assert t.results.millis == (math.floor(t.results.nanos * pow(10, -6))) assert results.millis == (math.floor(results.nanos * pow(10, -6)))
def testSeconds(self, t): def testSeconds(self):
t.tic() tic()
print("test") print("test")
t.toc() results = toc()
assert t.results.seconds == round( assert results.seconds == round(
(t.results.nanos * pow(10, -9)), 9 (results.nanos * pow(10, -9)), 9
) # f64 vs u128, hence the round ) # f64 vs u128, hence the round

82
tests/testInitSyntax.py Normal file
View File

@ -0,0 +1,82 @@
import pytest
import tictoc
import time
import math
@pytest.fixture
def t():
t = tictoc.init()
return t
class testFunctionality:
def testBasic(self, t):
t.tic()
print("test")
t.toc()
assert t.results.seconds > 0
def testOverwrite(self, t):
t.tic()
print("test")
t.toc()
firstResult = t.results.seconds
print("test2")
t.toc()
secondResult = t.results.seconds
assert firstResult < secondResult
class testInvalid:
def testNoInit(self):
with pytest.raises(Exception):
t.tic()
def testTocBeforeTic(self, t):
with pytest.raises(Exception):
t.toc()
@pytest.mark.parametrize("sleepTime", [0.05, 0.5, 1])
class testAccuracy:
@pytest.fixture(scope="class")
def tol(self):
return 0.0006
def testSingleCall(self, t, sleepTime, tol):
t.tic()
time.sleep(sleepTime)
t.toc()
assert (t.results.seconds < sleepTime+tol)
def testMultipleCalls(self, t, sleepTime, tol):
t.tic()
time.sleep(sleepTime)
t.toc()
time.sleep(sleepTime)
t.toc()
assert (t.results.seconds < (sleepTime * 2)+tol)
class testConsistency:
def testMicros(self, t):
t.tic()
print("test")
t.toc()
assert t.results.micros == (math.floor(t.results.nanos * pow(10, -3)))
def testMillis(self, t):
t.tic()
print("test")
t.toc()
assert t.results.millis == (math.floor(t.results.nanos * pow(10, -6)))
def testSeconds(self, t):
t.tic()
print("test")
t.toc()
assert t.results.seconds == round(
(t.results.nanos * pow(10, -9)), 9
) # f64 vs u128, hence the round