1
1
from unittest import TestCase
2
- from src . basic_operations import *
2
+ import basic_operations as bo
3
3
from peewee import *
4
+ from customer_model import *
4
5
5
6
database = SqliteDatabase (':memory:' )
6
7
@@ -21,7 +22,7 @@ def tearDown(self):
21
22
22
23
def test_add_customer (self ):
23
24
24
- add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
25
+ bo . add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
25
26
'5551231234' ,
'[email protected] ' ,
'Active' ,
'750000' )
26
27
27
28
new_test_cust = ['C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
@@ -37,10 +38,10 @@ def test_add_customer(self):
37
38
self .assertEqual (new_test_cust [7 ], Customer .credit_limit )
38
39
39
40
def test_search_customer (self ):
40
- add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
41
+ bo . add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
41
42
'5551231234' ,
'[email protected] ' ,
'Active' ,
'750000' )
42
43
43
- search = search_customer ('C00001' )
44
+ search = bo . search_customer ('C00001' )
44
45
45
46
test_search = {
46
47
'first_name' : 'Kevin' ,
@@ -52,21 +53,22 @@ def test_search_customer(self):
52
53
self .assertDictEqual (test_search , search )
53
54
54
55
def test_list_active_customers (self ):
55
- add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
56
+ bo . add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
56
57
'5551231234' ,
'[email protected] ' ,
'Active' ,
'750000' )
57
58
58
- self .assertEqual (1 , list_active_customers ())
59
+ self .assertEqual (1 , bo . list_active_customers ())
59
60
60
61
def test_delete_customer (self ):
61
- add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
62
+ bo . add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
62
63
'5551231234' ,
'[email protected] ' ,
'Active' ,
'750000' )
63
64
64
- self .assertEqual (True , delete_customer ('C00001' ))
65
+ self .assertEqual (True , bo . delete_customer ('C00001' ))
65
66
66
67
def test_update_customer (self ):
67
- add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
68
+ bo . add_customer ('C00001' , 'Kevin' , 'Cavanaugh' , '123 Main St' ,
68
69
'5551231234' ,
'[email protected] ' ,
'Active' ,
'750000' )
69
- self .assertEqual (True , update_customer ('C00001' , 1500000 ))
70
+ self .assertEqual (True , bo .update_customer ('C00001' , 1500000 ))
71
+
70
72
71
73
if __name__ == "__main__" :
72
74
unittest .main ()
0 commit comments