taiga-back/tests/unit/test_utils.py

92 lines
2.7 KiB
Python

# Copyright (C) 2014 Andrey Antukh <niwi@niwi.be>
# Copyright (C) 2014 Jesús Espino <jespinog@gmail.com>
# Copyright (C) 2014 David Barragán <bameda@dbarragan.com>
# 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/>.
from unittest import mock
import django_sites as sites
from taiga.base.utils.urls import get_absolute_url, is_absolute_url, build_url
from taiga.base.utils.db import save_in_bulk, update_in_bulk, update_in_bulk_with_ids
def test_is_absolute_url():
assert is_absolute_url("http://domain/path")
assert is_absolute_url("https://domain/path")
assert not is_absolute_url("://domain/path")
def test_get_absolute_url():
site = sites.get_current()
assert get_absolute_url("http://domain/path") == "http://domain/path"
assert get_absolute_url("/path") == build_url("/path", domain=site.domain, scheme=site.scheme)
def test_save_in_bulk():
instance = mock.Mock()
instances = [instance, instance]
save_in_bulk(instances)
assert instance.save.call_count == 2
def test_save_in_bulk_with_a_callback():
instance = mock.Mock()
callback = mock.Mock()
instances = [instance, instance]
save_in_bulk(instances, callback)
assert callback.call_count == 2
def test_update_in_bulk():
instance = mock.Mock()
instances = [instance, instance]
new_values = [{"field1": 1}, {"field2": 2}]
update_in_bulk(instances, new_values)
assert instance.save.call_count == 2
assert instance.field1 == 1
assert instance.field2 == 2
def test_update_in_bulk_with_a_callback():
instance = mock.Mock()
callback = mock.Mock()
instances = [instance, instance]
new_values = [{"field1": 1}, {"field2": 2}]
update_in_bulk(instances, new_values, callback)
assert callback.call_count == 2
def test_update_in_bulk_with_ids():
ids = [1, 2]
new_values = [{"field1": 1}, {"field2": 2}]
model = mock.Mock()
update_in_bulk_with_ids(ids, new_values, model)
expected_calls = [
mock.call(id=1), mock.call().update(field1=1),
mock.call(id=2), mock.call().update(field2=2)
]
model.objects.filter.assert_has_calls(expected_calls)