-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtests.py
62 lines (52 loc) · 1.77 KB
/
tests.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import time
from django.http import HttpRequest
from django.test import Client, TestCase
import apps.tracker.client as client
import apps.tracker.views as views
class ViewsSanityTest(TestCase):
def test_1_ping(self):
env = {
"delta": 5,
"username": "pnunez",
"host": "soda",
"salt": 123456789,
"timestamp": int(time.time() * 1000),
}
code_text = client.get_code_text(env)
signature = str(client.signature(code_text))
c = Client()
url = "/computers/ping/{0}/{1}".format(code_text, signature)
response = c.get(url, follow=True)
self.assertEqual(response.status_code, 200)
def test_2_views(self):
c = Client()
response = c.get("/computers/json", follow=True)
self.assertEquals(response.status_code, 200)
def test_3_multiple_logins(self):
env = {
"delta": 5,
"username": "pnunez",
"host": "soda",
"salt": 123456789,
"timestamp": int(time.time() * 1000),
}
code_text = client.get_code_text(env)
signature = str(client.signature(code_text))
c = Client()
response = c.get(
"/computers/ping/{0}/{1}".format(code_text, signature), follow=True
)
env2 = {
"delta": 5,
"username": "pnunez",
"host": "tap",
"salt": 123456789,
"timestamp": int(time.time() * 1000),
}
code_text = client.get_code_text(env)
signature = str(client.signature(code_text))
c2 = Client()
response = c2.get(
"/computers/ping/{0}/{1}".format(code_text, signature), follow=True
)
self.assertEqual(response.status_code, 200)