# -*- coding: utf8 -*- # This file is part of PyBossa. # # Copyright (C) 2015 SciFabric LTD. # # PyBossa 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. # # PyBossa 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 PyBossa. If not, see . from pybossa.dashboard.jobs import active_anon_week from pybossa.dashboard.data import format_anon_week from pybossa.core import db from factories.taskrun_factory import TaskRunFactory, AnonymousTaskRunFactory from datetime import datetime from default import Test, with_context from mock import patch, MagicMock class TestDashBoardActiveAnon(Test): @with_context @patch('pybossa.dashboard.jobs.db') def test_materialized_view_refreshed(self, db_mock): """Test JOB dashboard materialized view is refreshed.""" result = MagicMock() result.exists = True results = [result] db_mock.slave_session.execute.return_value = results res = active_anon_week() assert db_mock.session.execute.called assert res == 'Materialized view refreshed' @with_context @patch('pybossa.dashboard.jobs.db') def test_materialized_view_created(self, db_mock): """Test JOB dashboard materialized view is created.""" result = MagicMock() result.exists = False results = [result] db_mock.slave_session.execute.return_value = results res = active_anon_week() assert db_mock.session.commit.called assert res == 'Materialized view created' @with_context def test_anon_week(self): """Test JOB dashboard returns anon active week runs.""" TaskRunFactory.create() AnonymousTaskRunFactory.create() active_anon_week() sql = "select * from dashboard_week_anon;" results = db.session.execute(sql).fetchall() assert results[0].n_users == 1, results[0].n_users @with_context def test_format_anon_week(self): """Test format anon week works.""" AnonymousTaskRunFactory.create() active_anon_week() res = format_anon_week() assert len(res['labels']) == 1 day = datetime.utcnow().strftime('%Y-%m-%d') assert res['labels'][0] == day assert len(res['series']) == 1 assert res['series'][0][0] == 1, res['series'][0][0] @with_context @patch('pybossa.dashboard.data.db') def test_format_anon_week_empty(self, db_mock): """Test format anon week empty works.""" db_mock.slave_session.execute.return_value = [] TaskRunFactory.create() active_anon_week() res = format_anon_week() assert len(res['labels']) == 1 day = datetime.utcnow().strftime('%Y-%m-%d') assert res['labels'][0] == day assert len(res['series']) == 1 assert res['series'][0][0] == 0, res['series'][0][0]