mirror of https://github.com/sipwise/repoapi.git
This will help us when jumping to Django 2+ > RemovedInDjango20Warning: Importing from django.core.urlresolvers is deprecated in favor of django.urls. Change-Id: I13c3e1e8aea93aa48d1f7997eb6daae3b7dcfeccchanges/92/38692/1
parent
a382ec71f0
commit
69557f8e16
@ -1,41 +1,48 @@
|
||||
# Copyright (C) 2017 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 program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from django.core.urlresolvers import reverse
|
||||
from django.conf import settings
|
||||
from django.urls import reverse
|
||||
from mock import patch
|
||||
from rest_framework import status
|
||||
from rest_framework.test import APITestCase
|
||||
|
||||
from release_dashboard import models
|
||||
from mock import patch
|
||||
|
||||
|
||||
class TestDockerRest(APITestCase):
|
||||
fixtures = ['test_model_fixtures', ]
|
||||
fixtures = [
|
||||
"test_model_fixtures",
|
||||
]
|
||||
|
||||
@patch('release_dashboard.utils.docker.delete_docker_info')
|
||||
@patch("release_dashboard.utils.docker.delete_docker_info")
|
||||
def test_deletion(self, ddi):
|
||||
image_name = 'ngcp-panel-tests-rest-api-jessie'
|
||||
image_name = "ngcp-panel-tests-rest-api-jessie"
|
||||
tag = models.DockerTag.objects.get(
|
||||
name='latest',
|
||||
image__name=image_name)
|
||||
name="latest", image__name=image_name
|
||||
)
|
||||
response = self.client.delete(
|
||||
reverse('dockertag-detail', args=[tag.pk]), format='json')
|
||||
reverse("dockertag-detail", args=[tag.pk]), format="json"
|
||||
)
|
||||
self.assertEqual(response.status_code, status.HTTP_202_ACCEPTED)
|
||||
self.assertFalse(
|
||||
models.DockerTag.objects.filter(
|
||||
name='latest',
|
||||
image__name=image_name).exists())
|
||||
ddi.assert_called_once_with(settings.DOCKER_REGISTRY_URL.format(
|
||||
'%s/manifests/%s' % (image_name, tag.reference)))
|
||||
name="latest", image__name=image_name
|
||||
).exists()
|
||||
)
|
||||
ddi.assert_called_once_with(
|
||||
settings.DOCKER_REGISTRY_URL.format(
|
||||
"%s/manifests/%s" % (image_name, tag.reference)
|
||||
)
|
||||
)
|
||||
|
||||
Loading…
Reference in new issue