2013-10-03 21:52:35 +02:00
|
|
|
"""
|
|
|
|
Tests for api package.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2013-11-15 12:14:36 +01:00
|
|
|
from django.core.urlresolvers import reverse
|
|
|
|
|
2013-11-26 08:10:05 +01:00
|
|
|
from nsupdate.main.dnstools import query_ns
|
|
|
|
|
2013-10-03 21:52:35 +02:00
|
|
|
|
2013-11-16 01:25:05 +01:00
|
|
|
TEST_HOST = "test.nsupdate.info"
|
2013-11-16 07:51:04 +01:00
|
|
|
TEST_HOST2 = "test2.nsupdate.info"
|
2013-11-16 01:25:05 +01:00
|
|
|
TEST_SECRET = "secret"
|
|
|
|
|
2013-11-16 07:23:44 +01:00
|
|
|
USERNAME = 'test'
|
|
|
|
PASSWORD = 'pass'
|
|
|
|
|
2013-11-26 08:10:05 +01:00
|
|
|
BASEDOMAIN = "nsupdate.info"
|
|
|
|
HOSTNAME = 'nsupdate-ddns-client-unittest.' + BASEDOMAIN
|
|
|
|
|
2013-11-16 01:25:05 +01:00
|
|
|
|
2013-10-03 21:52:35 +02:00
|
|
|
def test_myip(client):
|
2013-11-15 12:14:36 +01:00
|
|
|
response = client.get(reverse('myip'))
|
2013-10-03 21:52:35 +02:00
|
|
|
assert response.status_code == 200
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content in [b'127.0.0.1', b'::1']
|
2013-10-03 21:52:35 +02:00
|
|
|
|
|
|
|
|
2013-11-16 06:09:56 +01:00
|
|
|
def test_nic_update_noauth(client):
|
2013-11-15 13:00:57 +01:00
|
|
|
response = client.get(reverse('nic_update'))
|
2013-10-03 21:52:35 +02:00
|
|
|
assert response.status_code == 401
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'badauth'
|
2013-11-15 13:00:57 +01:00
|
|
|
|
|
|
|
|
2013-11-16 01:25:05 +01:00
|
|
|
def make_basic_auth_header(username, password):
|
|
|
|
import base64
|
2013-12-14 00:35:29 +01:00
|
|
|
return b'Basic ' + base64.b64encode((username + ':' + password).encode('utf-8'))
|
2013-11-16 01:25:05 +01:00
|
|
|
|
|
|
|
|
2013-11-16 06:09:56 +01:00
|
|
|
def test_nic_update_badauth(client):
|
|
|
|
response = client.get(reverse('nic_update'),
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, "wrong"))
|
|
|
|
assert response.status_code == 401
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'badauth'
|
2013-11-16 06:09:56 +01:00
|
|
|
|
|
|
|
|
2013-11-16 07:51:04 +01:00
|
|
|
def test_nic_update_authorized_nonexistent_host(client):
|
|
|
|
response = client.get(reverse('nic_update') + '?hostname=nonexistent.nsupdate.info',
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# we must not get this updated, it doesn't exist in the database:
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'nohost'
|
2013-11-16 07:51:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_nic_update_authorized_foreign_host(client):
|
|
|
|
response = client.get(reverse('nic_update') + '?hostname=%s' % TEST_HOST2,
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# we must not get this updated, this is a host of some other user!
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'nohost'
|
2013-11-16 07:51:04 +01:00
|
|
|
|
|
|
|
|
2013-11-24 06:42:55 +01:00
|
|
|
def test_nic_update_authorized_not_fqdn_hostname(client):
|
|
|
|
response = client.get(reverse('nic_update') + '?hostname=test',
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'notfqdn'
|
2013-11-24 06:42:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_nic_update_authorized_not_fqdn_username(client):
|
|
|
|
response = client.get(reverse('nic_update'),
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header('test', TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'notfqdn'
|
2013-11-24 06:42:55 +01:00
|
|
|
|
|
|
|
|
2013-11-16 01:25:05 +01:00
|
|
|
def test_nic_update_authorized(client):
|
|
|
|
response = client.get(reverse('nic_update'),
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# we don't care whether it is nochg or good, but should be one of them:
|
2013-12-14 00:35:29 +01:00
|
|
|
content = response.content.decode('utf-8')
|
|
|
|
assert content.startswith('good ') or content.startswith('nochg ')
|
2013-11-16 01:25:05 +01:00
|
|
|
|
|
|
|
|
2013-11-16 07:51:04 +01:00
|
|
|
def test_nic_update_authorized_myip(client):
|
|
|
|
response = client.get(reverse('nic_update') + '?myip=4.3.2.1',
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# we don't care whether it is nochg or good, but should be the ip from myip=...:
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content in [b'good 4.3.2.1', b'nochg 4.3.2.1']
|
2013-11-21 04:02:16 +01:00
|
|
|
response = client.get(reverse('nic_update') + '?myip=1.2.3.4',
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# must be good (was different IP)
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'good 1.2.3.4'
|
2013-11-21 04:02:16 +01:00
|
|
|
response = client.get(reverse('nic_update') + '?myip=1.2.3.4',
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# must be nochg (was same IP)
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'nochg 1.2.3.4'
|
2013-11-21 04:02:16 +01:00
|
|
|
|
|
|
|
|
2013-11-26 08:10:05 +01:00
|
|
|
def test_nic_update_authorized_update_other_services(client):
|
|
|
|
response = client.get(reverse('nic_update') + '?myip=4.3.2.1',
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# we don't care whether it is nochg or good, but should be the ip from myip=...:
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content in [b'good 4.3.2.1', b'nochg 4.3.2.1']
|
2013-11-26 08:10:05 +01:00
|
|
|
response = client.get(reverse('nic_update') + '?myip=1.2.3.4',
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# must be good (was different IP)
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'good 1.2.3.4'
|
2013-11-26 08:10:05 +01:00
|
|
|
# now check if it updated the other service also:
|
|
|
|
assert query_ns(HOSTNAME, 'A') == '1.2.3.4'
|
|
|
|
response = client.get(reverse('nic_update') + '?myip=2.3.4.5',
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET))
|
|
|
|
assert response.status_code == 200
|
|
|
|
# must be good (was different IP)
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'good 2.3.4.5'
|
2013-11-26 08:10:05 +01:00
|
|
|
# now check if it updated the other service also:
|
|
|
|
assert query_ns(HOSTNAME, 'A') == '2.3.4.5'
|
|
|
|
|
|
|
|
|
2013-11-21 04:02:16 +01:00
|
|
|
def test_nic_update_authorized_badagent(client, settings):
|
|
|
|
settings.BAD_AGENTS = ['foo', 'bad_agent', 'bar', ]
|
|
|
|
response = client.get(reverse('nic_update'),
|
|
|
|
HTTP_AUTHORIZATION=make_basic_auth_header(TEST_HOST, TEST_SECRET),
|
|
|
|
HTTP_USER_AGENT='bad_agent')
|
|
|
|
assert response.status_code == 200
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'badagent'
|
2013-11-16 07:51:04 +01:00
|
|
|
|
|
|
|
|
2013-11-16 07:23:44 +01:00
|
|
|
def test_nic_update_session_nosession(client):
|
2013-11-15 13:00:57 +01:00
|
|
|
response = client.get(reverse('nic_update_authorized'))
|
|
|
|
assert response.status_code == 302 # redirects to login view
|
|
|
|
|
|
|
|
|
2013-11-21 04:02:16 +01:00
|
|
|
def test_nic_update_session_no_hostname(client):
|
2013-11-16 07:23:44 +01:00
|
|
|
client.login(username=USERNAME, password=PASSWORD)
|
|
|
|
response = client.get(reverse('nic_update_authorized'))
|
|
|
|
assert response.status_code == 200
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'nohost' # we did not tell which host
|
2013-11-21 04:02:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_nic_update_session(client):
|
|
|
|
client.login(username=USERNAME, password=PASSWORD)
|
|
|
|
response = client.get(reverse('nic_update_authorized') + '?hostname=%s' % (TEST_HOST, ))
|
2013-11-16 07:23:44 +01:00
|
|
|
assert response.status_code == 200
|
2013-12-14 00:35:29 +01:00
|
|
|
content = response.content.decode('utf-8')
|
|
|
|
assert content.startswith('good ') or content.startswith('nochg ')
|
2013-11-16 07:23:44 +01:00
|
|
|
|
|
|
|
|
2013-11-21 04:02:16 +01:00
|
|
|
def test_nic_update_session_myip(client):
|
|
|
|
client.login(username=USERNAME, password=PASSWORD)
|
|
|
|
response = client.get(reverse('nic_update_authorized') + '?hostname=%s&myip=%s' % (TEST_HOST, '1.2.3.4'))
|
|
|
|
assert response.status_code == 200
|
2013-12-14 00:35:29 +01:00
|
|
|
content = response.content.decode('utf-8')
|
|
|
|
assert content.startswith('good 1.2.3.4') or content.startswith('nochg 1.2.3.4')
|
2013-11-21 04:02:16 +01:00
|
|
|
|
|
|
|
|
2013-11-16 07:51:04 +01:00
|
|
|
def test_nic_update_session_foreign_host(client):
|
|
|
|
client.login(username=USERNAME, password=PASSWORD)
|
|
|
|
response = client.get(reverse('nic_update_authorized') + '?hostname=%s' % TEST_HOST2)
|
|
|
|
assert response.status_code == 200
|
|
|
|
# we must not get this updated, this is a host of some other user!
|
2013-12-14 00:35:29 +01:00
|
|
|
assert response.content == b'nohost'
|
2013-11-16 07:51:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_detect_ip_invalid_session(client):
|
2013-11-15 13:00:57 +01:00
|
|
|
response = client.get(reverse('detectip', args=('invalid_session_id', )))
|
|
|
|
assert response.status_code == 204
|
|
|
|
|
|
|
|
|
|
|
|
def test_ajax_get_ips(client):
|
|
|
|
response = client.get(reverse('ajax_get_ips'))
|
|
|
|
assert response.status_code == 200
|