aboutsummaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2015-01-09 15:05:34 +0100
committerMilo Casagrande <milo.casagrande@linaro.org>2015-01-09 15:05:34 +0100
commitde36b1a5ad6691152bb7e36c0111bb0ca9262aea (patch)
tree727a8dd9bcd9714210641cece685f2cbb80a4fee /app/models
parent9f51e31bb555e636808fe7e0df93db40a4134ddb (diff)
test: Add report model tests.
Change-Id: I7471a0bb14d5b5c7d723ebeb8a0a22d84b9dda02
Diffstat (limited to 'app/models')
-rw-r--r--app/models/tests/test_report_model.py68
1 files changed, 68 insertions, 0 deletions
diff --git a/app/models/tests/test_report_model.py b/app/models/tests/test_report_model.py
new file mode 100644
index 0000000..8ec2026
--- /dev/null
+++ b/app/models/tests/test_report_model.py
@@ -0,0 +1,68 @@
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+import unittest
+
+import models.base as mbase
+import models.report as mreport
+
+
+class TestReportModel(unittest.TestCase):
+
+ def test_report_document_valid_instance(self):
+ report_doc = mreport.ReportDocument("name")
+ self.assertIsInstance(report_doc, mbase.BaseDocument)
+
+ def test_report_document_to_dict(self):
+ self.maxDiff = None
+ report_doc = mreport.ReportDocument("name")
+ report_doc.id = "id"
+ report_doc.created_on = "now"
+ report_doc.job = "job"
+ report_doc.kernel = "kernel"
+ report_doc.r_type = "boot"
+ report_doc.status = "ERROR"
+ report_doc.updated_on = "now"
+ report_doc.errors = [(1, "msg")]
+
+ expected = {
+ "_id": "id",
+ "created_on": "now",
+ "errors": [(1, "msg")],
+ "job": "job",
+ "kernel": "kernel",
+ "name": "name",
+ "status": "ERROR",
+ "type": "boot",
+ "updated_on": "now",
+ "version": "1.0"
+ }
+
+ self.assertDictEqual(expected, report_doc.to_dict())
+
+ def test_report_document_from_json(self):
+ json_obj = {
+ "_id": "id",
+ "created_on": "now",
+ "job": "job",
+ "kernel": "kernel",
+ "name": "name",
+ "type": "build",
+ "version": "1.1"
+ }
+ report_doc = mreport.ReportDocument.from_json(json_obj)
+
+ self.assertIsInstance(report_doc, mbase.BaseDocument)
+ self.assertIsInstance(report_doc, mreport.ReportDocument)
+
+ self.assertEqual("1.1", report_doc.version)