aboutsummaryrefslogtreecommitdiff
path: root/backend/tests
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-12-28 20:49:13 +1100
committerTerry Truong <terry06890@gmail.com>2022-12-28 20:49:13 +1100
commit4ad7206443660587a15a7b47384b927188155da8 (patch)
treee925a1169bcf48b5b9a165f6202b0e1e7cdbca21 /backend/tests
parentdb9321ca32f283f7fd59e2e8b5f8a695c66fce98 (diff)
Convert 'scores' table to 'events_disp', removing 'scores' column
Diffstat (limited to 'backend/tests')
-rw-r--r--backend/tests/test_gen_disp_data.py (renamed from backend/tests/test_gen_score_data.py)38
-rw-r--r--backend/tests/test_histplorer.py18
2 files changed, 28 insertions, 28 deletions
diff --git a/backend/tests/test_gen_score_data.py b/backend/tests/test_gen_disp_data.py
index a466679..b806958 100644
--- a/backend/tests/test_gen_score_data.py
+++ b/backend/tests/test_gen_disp_data.py
@@ -2,7 +2,7 @@ import unittest
import tempfile, os
from tests.common import createTestDbTable, readTestDbTable
-from hist_data.gen_score_data import genData, MONTH_SCALE, DAY_SCALE
+from hist_data.gen_disp_data import genData, MONTH_SCALE, DAY_SCALE
from hist_data.cal import gregorianToJdn
class TestGenData(unittest.TestCase):
@@ -59,24 +59,24 @@ class TestGenData(unittest.TestCase):
}
)
self.assertEqual(
- readTestDbTable(dbFile, 'SELECT id, scale, score FROM scores'),
+ readTestDbTable(dbFile, 'SELECT id, scale FROM event_disp'),
{
- (5, 10, 50),
- (1, 10, 11),
- (2, 10, 21),
- (5, 1, 50),
- (1, 1, 11),
- (4, 1, 5),
- (2, 1, 21),
- (1, MONTH_SCALE, 11),
- (6, MONTH_SCALE, 10),
- (4, MONTH_SCALE, 5),
- (5, MONTH_SCALE, 50),
- (2, MONTH_SCALE, 21),
- (1, DAY_SCALE, 11),
- (4, DAY_SCALE, 5),
- (5, DAY_SCALE, 50),
- (6, DAY_SCALE, 10),
- (2, DAY_SCALE, 21),
+ (5, 10),
+ (1, 10),
+ (2, 10),
+ (5, 1),
+ (1, 1),
+ (4, 1),
+ (2, 1),
+ (1, MONTH_SCALE),
+ (6, MONTH_SCALE),
+ (4, MONTH_SCALE),
+ (5, MONTH_SCALE),
+ (2, MONTH_SCALE),
+ (1, DAY_SCALE),
+ (4, DAY_SCALE),
+ (5, DAY_SCALE),
+ (6, DAY_SCALE),
+ (2, DAY_SCALE),
}
)
diff --git a/backend/tests/test_histplorer.py b/backend/tests/test_histplorer.py
index eb89f50..a2b4623 100644
--- a/backend/tests/test_histplorer.py
+++ b/backend/tests/test_histplorer.py
@@ -34,16 +34,16 @@ def initTestDb(dbFile: str) -> None:
)
createTestDbTable(
dbFile,
- 'CREATE TABLE scores (id INT, scale INT, score INT, PRIMARY KEY (id, scale))',
- 'INSERT INTO scores VALUES (?, ?, ?)',
+ 'CREATE TABLE event_disp (id INT, scale INT, PRIMARY KEY (id, scale))',
+ 'INSERT INTO event_disp VALUES (?, ?)',
{
- (1, 1, 11),
- (1, 10, 11),
- (2, 1, 21),
- (3, 1, 0),
- (4, 1, 1000),
- (5, 1, 51),
- (6, 10, 60),
+ (1, 1),
+ (1, 10),
+ (2, 1),
+ (3, 1),
+ (4, 1),
+ (5, 1),
+ (6, 10),
}
)
createTestDbTable(