-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.py
More file actions
88 lines (71 loc) · 3.23 KB
/
test.py
File metadata and controls
88 lines (71 loc) · 3.23 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
"""Unit tests for blagues-api wrapper"""
import unittest
import os
import dotenv
import BlaguesApi
dotenv.load_dotenv()
TOKEN = os.getenv('MY_ENV_VAR')
Jokes = BlaguesApi.Jokes(TOKEN)
JokesAround = BlaguesApi.JokesAround(TOKEN)
class WrapperTests(unittest.TestCase):
def test_token(self):
""" Check token existance in .env """
self.assertIsInstance(TOKEN, str)
def test_random_joke(self):
""" Check random joke """
response = Jokes.random()
self.assertIsInstance(response, dict)
self.assertIsInstance(response["id"], int)
self.assertIn(response["type"], BlaguesApi.JokeTypes)
self.assertIsInstance(response["joke"], str)
self.assertIsInstance(response["answer"], str)
def test_random_with_disallowed_without_params(self):
""" Check random with disallowed type without params """
response = Jokes.random_without()
self.assertIn(response["type"], BlaguesApi.JokeTypes)
def test_random_with_disallowed(self):
""" Check random with disallowed DARK type """
response = Jokes.random_without(BlaguesApi.Types.DARK)
self.assertIsInstance(response, dict)
self.assertIsInstance(response["id"], int)
self.assertNotEqual(response["type"], BlaguesApi.Types.DARK)
self.assertIsInstance(response["joke"], str)
self.assertIsInstance(response["answer"], str)
def test_by_id(self):
""" Check joke by ID """
response = Jokes.from_id(1)
self.assertIsInstance(response, dict)
self.assertEqual(response["id"], 1)
self.assertIn(response["type"], BlaguesApi.JokeTypes)
self.assertIsInstance(response["joke"], str)
self.assertIsInstance(response["answer"], str)
def test_random_joke_arround(self):
""" Check random joke (arround)"""
response = JokesAround.random()
self.assertIsInstance(response, dict)
self.assertIsInstance(response["id"], int)
self.assertIn(response["type"], BlaguesApi.JokeTypes)
self.assertIsInstance(response["joke"], str)
self.assertIsInstance(response["answer"], str)
def test_random_with_disallowed_without_params_arround(self):
""" Check random with disallowed type without params (arround)"""
response = JokesAround.random_without()
self.assertIn(response["type"], BlaguesApi.JokeTypes)
def test_random_with_disallowed_arround(self):
""" Check random with disallowed DARK type (arround)"""
response = JokesAround.random_without(BlaguesApi.Types.DARK)
self.assertIsInstance(response, dict)
self.assertIsInstance(response["id"], int)
self.assertNotEqual(response["type"], BlaguesApi.Types.DARK)
self.assertIsInstance(response["joke"], str)
self.assertIsInstance(response["answer"], str)
def test_by_id_arround(self):
""" Check joke by ID (arround)"""
response = JokesAround.from_id(1)
self.assertIsInstance(response, dict)
self.assertEqual(response["id"], 1)
self.assertIn(response["type"], BlaguesApi.JokeTypes)
self.assertIsInstance(response["joke"], str)
self.assertIsInstance(response["answer"], str)
if __name__ == '__main__':
unittest.main()