mirror of https://github.com/sipwise/repoapi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.8 KiB
78 lines
2.8 KiB
# Copyright (C) 2020 The Sipwise Team - http://sipwise.com
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify it
|
|
# under the terms of the GNU 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 General Public License for
|
|
# more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this prograproj. If not, see <http://www.gnu.org/licenses/>.
|
|
from unittest.mock import patch
|
|
|
|
from django.contrib.auth.models import User
|
|
from django.test import override_settings
|
|
from django.test import TestCase
|
|
from django.urls import reverse
|
|
|
|
|
|
class TestHotfix(TestCase):
|
|
def test_no_login(self):
|
|
res = self.client.get(reverse("release_dashboard:hotfix"))
|
|
self.assertNotEqual(res.status_code, 200)
|
|
|
|
def test_login_ok(self):
|
|
user = User.objects.create_user(username="test")
|
|
self.client.force_login(user)
|
|
res = self.client.get(reverse("release_dashboard:hotfix"))
|
|
self.assertEqual(res.status_code, 200)
|
|
|
|
@override_settings(RELEASE_DASHBOARD_PROJECTS=["fake"])
|
|
@patch("release_dashboard.views.get_tags")
|
|
@patch("release_dashboard.views.get_branches")
|
|
def test_natural_sort(self, gb, gt):
|
|
user = User.objects.create_user(username="test")
|
|
self.client.force_login(user)
|
|
gt.return_value = []
|
|
gb.return_value = [
|
|
"branch/mr5.1",
|
|
"branch/mr8.1.1",
|
|
"branch/mr8.1.2",
|
|
"branch/mr8.1.10",
|
|
"branch/mr7.5.1",
|
|
"branch/mr6.10.1",
|
|
]
|
|
res = self.client.get(reverse("release_dashboard:hotfix"))
|
|
self.assertEqual(res.status_code, 200)
|
|
expected = [
|
|
{
|
|
"name": "fake",
|
|
"tags": [],
|
|
"branches": [
|
|
"branch/mr8.1.10",
|
|
"branch/mr8.1.2",
|
|
"branch/mr8.1.1",
|
|
"branch/mr7.5.1",
|
|
"branch/mr6.10.1",
|
|
"branch/mr5.1",
|
|
],
|
|
},
|
|
]
|
|
self.assertEqual(res.context["projects"], expected)
|
|
|
|
|
|
class TestDocker(TestCase):
|
|
def test_no_login(self):
|
|
res = self.client.get(reverse("release_dashboard:docker_images"))
|
|
self.assertNotEqual(res.status_code, 200)
|
|
|
|
def test_login_ok(self):
|
|
user = User.objects.create_user(username="test")
|
|
self.client.force_login(user)
|
|
res = self.client.get(reverse("release_dashboard:docker_images"))
|
|
self.assertEqual(res.status_code, 200)
|