-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtests.py
More file actions
874 lines (813 loc) · 38.2 KB
/
tests.py
File metadata and controls
874 lines (813 loc) · 38.2 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
import unittest
import flask
import requests
from itertools import chain
from ipaddress import ip_network
import library
from publisher import Publisher
from sqlalchemy import or_, and_
import models
import flask
import os
import sys
import datetime
from config import config
if os.environ.get("LIBRARY_ENV",None) != "test":
print "You need to set LIBRARY_ENV to test!"
sys.exit(1)
class LibrarySiteTests(unittest.TestCase):
def setUp(self):
models.Base.metadata.create_all(bind=library.db.engine)
self.app = library.app.test_client()
models.init_models(library.db.session)
models.init_test_models(library.db.session)
self.session = library.db.session
def tearDown(self):
models.Base.metadata.drop_all(bind=library.db.engine)
def login(self,u,p):
with self.app as c:
response = c.get('/login', follow_redirects=True)
response = self.app.post('/login', data=dict(
username=u,
password=p,
_csrf_token=flask.session['_csrf_token'],
), follow_redirects=True)
return response
def logout(self):
self.app.get('/logout',follow_redirects=True)
def test_main(self):
response = self.app.get('/')
self.assertIn(config.SITENAME, response.data)
def test_login(self):
with self.app as c:
#test initial get request
response = c.get('/login')
self.assertIn("Welcome to the Staff Login",response.data)
#test invalid user
response = c.post('/login', data=dict(
username="invalid",
password="invalid",
_csrf_token=flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn('Invalid Credentials', response.data)
#test valid user
def test_login_as_fred(password):
with self.app as c:
c.get('/login')
response = c.post('/login', data=dict(
username="fred",
password=password,
_csrf_token=flask.session['_csrf_token'],
), follow_redirects=True)
self.assertEquals(flask.session["logged_in_name"],"fred")
response = c.post('/login', data=dict(
username="fred",
password=password,
_csrf_token=flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn('Welcome to the Librarian Staff Page', response.data)
test_login_as_fred("fred")
#test change password
with self.app as c:
c.get('/changepassword')
response = self.app.post('/changepassword',
data=dict(oldpass='fred',
newpass='freddy',
_csrf_token=flask.session['_csrf_token']),
follow_redirects=True)
self.assertIn('Welcome to the Staff Login', response.data)
test_login_as_fred('freddy')
def test_logout(self):
with self.app:
response = self.app.get('/logout',follow_redirects=True)
self.assertIn('You were logged out',response.data)
self.assertNotIn("logged_in",flask.session)
def test_admin(self):
self.login("admin","admin")
#test admin
response = self.app.get("/admin")
self.assertIn("Add a new staff member",response.data)
self.assertIn("/edit-profile/admin",response.data)
self.assertIn("/edit-profile/fred",response.data)
self.logout()
#test normal user
self.login("fred","fred")
response = self.app.get("/admin", follow_redirects=True)
self.logout()
def test_librarian(self):
self.login("fred","fred")
response = self.app.get("/librarian")
self.assertIn("ABCs",response.data)
self.assertIn("Night Before Christmas",response.data)
self.assertNotIn("The Invisible Man",response.data)
self.assertNotIn("Moby Dick",response.data)
def test_adduser(self):
#try with non admin
self.login("fred","fred")
response = self.app.get('/admin', follow_redirects=True)
#response = c.post("/adduser", data={}, follow_redirects=True)
self.assertIn("You are not authorized to perform this action.",response.data)
#try with missing values
self.logout()
self.login("admin","admin")
with self.app as c:
c.get('/admin', follow_redirects=True)
response = c.post("/adduser",data=dict(
username="t",
password="t",
f_name="",
l_name="",
phone="",
_csrf_token = flask.session['_csrf_token'],
emailaddress=""),follow_redirects=True)
self.assertIn("All fields are required. Please try again.",response.data)
response = c.post("/adduser",data=dict(
username="",
password="",
f_name="t",
l_name="t",
phone="",
_csrf_token = flask.session['_csrf_token'],
emailaddress=""),follow_redirects=True)
self.assertIn("All fields are required. Please try again.",response.data)
#try with bogus phone number
response = c.post("/adduser",data=dict(
username="t",
password="t",
f_name="t",
l_name="t",
phone="1112222",
_csrf_token = flask.session['_csrf_token'],
emailaddress="test@testing.com"),follow_redirects=True)
self.assertIn("Phone number must include area code.",response.data)
#all is well, make sure stored in db
response = c.post("/adduser",data=dict(
username="t",
password="t",
f_name="t",
l_name="t",
phone="1112223333",
_csrf_token = flask.session['_csrf_token'],
emailaddress="test@testing.com"),follow_redirects=True)
staff=models.Staff.query.filter(
and_(models.Staff.username=='t', models.Staff.f_name=='t',
models.Staff.l_name=='t',
models.Staff.phonenumber==1112223333,
models.Staff.emailaddress=='test@testing.com')).first()
#NOTE: password must be verified on the Python side now
self.assertIsNotNone(staff)
self.assertTrue(staff.password=='t')
#try adding an existing username
response = c.post("/adduser",data=dict(
username="t",
password="t",
f_name="t",
l_name="t",
_csrf_token = flask.session['_csrf_token'],
phone="1112223333",
emailaddress="test2@testing.com"),follow_redirects=True)
self.assertIn("Username or email address is already used.",response.data)
#try adding an existing email address
response = c.post("/adduser",data=dict(
username="u",
password="u",
f_name="u",
l_name="u",
_csrf_token = flask.session['_csrf_token'],
phone="1112223333",
emailaddress="test@testing.com"),follow_redirects=True)
self.assertIn("Username or email address is already used.",response.data)
#second all is well check with non-digit chars in phone
response = c.post("/adduser",data=dict(
username="u",
password="u",
f_name="u",
l_name="u",
_csrf_token = flask.session['_csrf_token'],
phone="111-222-3333",
emailaddress="test2@testing.com"),follow_redirects=True)
staff=models.Staff.query.filter(
and_(models.Staff.username=='u', models.Staff.f_name=='u',
models.Staff.l_name=='u',
models.Staff.phonenumber==1112223333,
models.Staff.emailaddress=='test2@testing.com')).first()
self.assertIsNotNone(staff)
self.assertTrue(staff.password=='u')
def test_deleteuser(self):
# ALL posts without csrf should fail
#
# # non-admin can't delete users
# self.login("fred", "fred")
# response = self.app.post("/deleteuser/elmo", data={}, follow_redirects=True)
# self.assertIn("You are not authorized to perform this action.", response.data)
# self.logout()
self.login("admin", "admin")
with self.app as c:
# can't delete admin
c.get('/admin', follow_redirects=True)
response = c.post("/deleteuser/admin",
data={'_csrf_token': flask.session['_csrf_token']},
follow_redirects=True)
self.assertIn("You are not authorized to perform this action.", response.data)
# deleting user removed recommended readings and user
c.get('/admin', follow_redirects=True)
response = c.post("/deleteuser/elmo",
data={'_csrf_token': flask.session['_csrf_token']},
follow_redirects=True)
self.assertIn("User was successfully removed!", response.data)
rl = models.ReadingList.query.filter(models.ReadingList.username=="elmo").first()
self.assertIsNone(rl)
s = models.Staff.query.filter(models.Staff.username=="elmo").first()
self.assertIsNone(s)
# confirm delete user with patron contacts
c.get('/admin', follow_redirects=True)
response = c.post("/deleteuser/fred",
data={'_csrf_token': flask.session['_csrf_token']},
follow_redirects=True)
self.assertIn("User was successfully removed!", response.data)
rl = models.PatronContact.query.filter(models.PatronContact.username=="fred").first()
self.assertIsNone(rl)
s = models.Staff.query.filter(models.Staff.username=="elmo").first()
self.assertIsNone(s)
def test_edituser(self):
#try with admin
self.logout()
self.login("admin","admin")
response = self.app.get("/edit-profile/admin")
self.assertIn("Staff Profile for admin",response.data)
#try with non admin
self.login("fred","fred")
response = self.app.get("/edit-profile/fred")
self.assertIn("2222222222",response.data) # Verify that correct phone number is retrieved for fred
#try name change
self.login("fred","fred")
with self.app as c:
c.get('/edit-profile/fred')
response = c.post("/edit-profile/fred",data=dict(
f_name = 'Freddy',
l_name = 'Fredderson',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Profile updated",response.data)
staff=models.Staff.query.filter(and_(models.Staff.username=='fred',
models.Staff.f_name=='Freddy', models.Staff.l_name=='Fredderson',
models.Staff.emailaddress=='KentonCountyLibrary@gmail.com',
models.Staff.phonenumber=='2222222222',
models.Staff.bio=="I am Fred's incomplete bio",
models.Staff.phone==0, models.Staff.irl==0,
models.Staff.email==1, models.Staff.chat==0)).first()
self.assertIsNotNone(staff)
#try adding interests (and change name back to Fred)
self.login("fred","fred")
with self.app as c:
c.get('/edit-profile/fred')
response = c.post("/edit-profile/fred",data=dict(
f_name = 'Fred',
l_name = 'Fredderson',
interests = 'books',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Profile updated",response.data)
staff=models.Staff.query.filter(and_(models.Staff.username=='fred', models.Staff.interests=='books')).first()
self.assertIsNotNone(staff)
#try changing with incorrect phone number
self.login("fred","fred")
with self.app as c:
c.get('/edit-profile/fred')
response = c.post("/edit-profile/fred",data=dict(
emailaddress = 'test@test.net',
phonenumber = '111-1111',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Your phone number must include the area code",response.data)
self.assertIn("test@test.net",response.data) # Verify that input data was retained
staff=models.Staff.query.filter(and_(models.Staff.username=='fred', models.Staff.emailaddress=='test@test.net', models.Staff.phonenumber=='1111111')).first()
self.assertIsNone(staff)
#try changing to an existing email
self.login("fred","fred")
with self.app as c:
c.get('/edit-profile/fred')
response = c.post("/edit-profile/fred",data=dict(
emailaddress = 'ernie@test.com',
phonenumber = '111-111-1111',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Email address used by another user.",response.data)
staff=models.Staff.query.filter(and_(models.Staff.username=='fred', models.Staff.emailaddress=='ernie@test.com', models.Staff.phonenumber=='1111111111')).first()
self.assertIsNone(staff)
#try changing email and phone number
self.login("fred","fred")
with self.app as c:
c.get('/edit-profile/fred')
response = c.post("/edit-profile/fred",data=dict(
emailaddress = 'test@test.net',
phonenumber = '111-111-1111',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Profile updated",response.data)
staff=models.Staff.query.filter(and_(models.Staff.username=='fred', models.Staff.emailaddress=='test@test.net', models.Staff.phonenumber=='1111111111')).first()
self.assertIsNotNone(staff)
#try adding email and chat contact pref (change email and phone number back)
self.login("fred","fred")
with self.app as c:
c.get('/edit-profile/fred')
response = c.post("/edit-profile/fred",data=dict(
emailaddress = 'KentonCountyLibrary@gmail.com',
phonenumber = '222-222-2222',
interests = 'I like tests',
bio = 'test',
phone = 'on',
chat = 'on',
irl = 'on',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Profile updated",response.data)
staff=models.Staff.query.filter(and_(models.Staff.username=='fred', models.Staff.emailaddress=='KentonCountyLibrary@gmail.com', models.Staff.phonenumber=='2222222222', models.Staff.bio=="test", models.Staff.phone==1, models.Staff.irl==1, models.Staff.email==1, models.Staff.chat==1)).first()
self.assertIsNotNone(staff)
#Change Password
#try incorrect old password
self.login("fred","fred")
with self.app as c:
c.get('/edit-profile/fred')
response = c.post("/changepassword",data=dict(
oldpass = 'garbage',
newpass = 'password',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Password verification failed",response.data)
staff=models.Staff.query.filter(
and_(models.Staff.username=='fred',
models.Staff.emailaddress=='KentonCountyLibrary@gmail.com')).first()
#NOTE: password must be verified on the Python side now
self.assertIsNotNone(staff)
self.assertTrue(staff.password=='fred')
#try changing password (then change back)
self.login("fred","fred")
with self.app as c:
c.get('/edit-profile/fred')
response = c.post("/changepassword",data=dict(
oldpass = 'fred',
newpass = 'password',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Password changed",response.data)
staff=models.Staff.query.filter(
and_(models.Staff.username=='fred',
models.Staff.emailaddress=='KentonCountyLibrary@gmail.com')).first()
#NOTE: password must be verified on the Python side now
self.assertIsNotNone(staff)
self.assertTrue(staff.password=='password')
self.login("fred","password")
with self.app as c:
c.get('/changepassword')
response = c.post("/changepassword",data=dict(
oldpass = 'fred',
newpass = 'fred',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
def test_addrecread(self):
# admin can edit, but book name must exist.
self.login("admin", "admin")
with self.app as c:
c.get('/admin')
# admin EDIT - no book name
response = c.post("/addrecread", data=dict(
RLID="1",
book="",
author="t",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Book name is required.", response.data)
# admin EDIT - no ISBN
response = c.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("ISBN is required.", response.data)
# admin EDIT - no author
response = c.post("/addrecread", data=dict(
RLID="1",
book="t",
author="",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Author is required.", response.data)
# admin EDIT - no category
response = c.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="t",
category="",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Category is required.", response.data)
# admin EDIT - with book name
self.login("admin", "admin")
with self.app as c:
c.get('/admin')
response = c.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
recread = models.ReadingList.query.filter(and_(
models.ReadingList.book == 't',
models.ReadingList.author == 't',
models.ReadingList.comment == 't',
models.ReadingList.ISBN == 't',
models.ReadingList.sticky == True)).first()
self.assertIsNotNone(recread)
self.logout()
# fred can edit and can add
self.login("fred", "fred")
with self.app as c:
c.get('/librarian')
# fred ADD - no book name
response = c.post("/addrecread", data=dict(
book="",
author="t",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Book name is required.", response.data)
# fred ADD - no ISBN
response = c.post("/addrecread", data=dict(
book="t",
author="t",
comment="t",
ISBN="",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("ISBN is required.", response.data)
# fred ADD - no author
response = c.post("/addrecread", data=dict(
book="t",
author="",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Author is required.", response.data)
# fred ADD - no Cateogry
response = c.post("/addrecread", data=dict(
book="t",
author="t",
comment="t",
ISBN="t",
category="",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Category is required.", response.data)
# fred ADD - with book name
response = c.post("/addrecread", data=dict(
book="t",
author="t",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
recread = models.ReadingList.query.filter(and_(
models.ReadingList.username == 'fred',
models.ReadingList.book == 't',
models.ReadingList.author == 't',
models.ReadingList.comment == 't',
models.ReadingList.ISBN == 't',
models.ReadingList.sticky == True)).first()
self.assertIsNotNone(recread)
# fred EDIT - no book name
c.get('/librarian')
response = c.post("/addrecread", data=dict(
RLID="1",
book="",
author="t",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Book name is required.", response.data)
# fred EDIT - no ISBN name
response = c.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("ISBN is required.", response.data)
# fred EDIT - no author
response = c.post("/addrecread", data=dict(
RLID="1",
book="t",
author="",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Author is required.", response.data)
# fred EDIT - no cateogry
response = c.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="t",
category="",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
self.assertIn("Category is required.", response.data)
# fred EDIT - with book name
response = c.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="t",
category="t",
_csrf_token = flask.session['_csrf_token'],
sticky=1), follow_redirects=True)
recread = models.ReadingList.query.filter(and_(
models.ReadingList.username == 'fred',
models.ReadingList.book == 't',
models.ReadingList.author == 't',
models.ReadingList.comment == 't',
models.ReadingList.ISBN == 't',
models.ReadingList.sticky == True)).first()
self.assertIsNotNone(recread)
def test_remrecread(self):
#unknown recread, should not matter
self.login("fred","fred")
response = self.app.post("/remrecread/100",data={},follow_redirects=True)
self.assertNotIn("Deleted recommended reading.",response.data)
#insert a recread, make sure its removed
fred = models.Staff.query.filter(models.Staff.username=='fred').first()
readinglist = models.ReadingList(
recdate=datetime.date.today(),
ISBN="eee",
book="book",
author="author",
comment="comment",
sticky=0,
category="category")
fred.readinglist.append(readinglist)
self.session.commit()
rlid = readinglist.RLID
#try another user
self.logout()
self.login("elmo","elmo")
response = self.app.post("/remrecread/"+str(rlid),data={},follow_redirects=True)
self.assertNotIn("Deleted recommended reading.",response.data)
self.logout()
#try with fred
self.login("fred","fred")
with self.app as c:
c.get('/admin')
response = c.post("/remrecread/"+str(rlid),
data=dict(_csrf_token=flask.session['_csrf_token']),
follow_redirects=True)
self.assertIn("Deleted recommended reading.",response.data)
rl = models.ReadingList.query.filter(models.ReadingList.ISBN=="eee").first()
self.assertIsNone(rl)
def test_profile(self):
response = self.app.get("/profile/fred")
self.assertIn("Fredderson",response.data)
def test_add_patroncontact(self):
with self.app as c:
response = c.get("/contact/fred")
self.assertIn("Contact Fred", response.data)
#confirm that default contact preference is/not present
self.assertIn("In Person", response.data)
self.assertNotIn("Online Chat", response.data)
#add In Person contact request
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'irl',
times = 'Anytime',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("contact request was received",response.data)
patroncontact=models.PatronContact.query.filter(and_(
models.PatronContact.username=='fred',
models.PatronContact.name=='Jeff Johnson',
models.PatronContact.email=='test@test.net',
models.PatronContact.contact=='irl',
models.PatronContact.times=='Anytime')).first()
self.assertIsNotNone(patroncontact)
#test contact page exists
response = self.app.get("/contact/fred")
self.assertIn("Contact Fred",response.data)
#confirm that default contact preference is/not present
self.assertIn("In Person",response.data)
self.assertNotIn("Online Chat",response.data)
#add In Person contact request
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'irl',
times = 'Anytime',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("contact request was received",response.data)
patroncontact=models.PatronContact.query.filter(and_(
models.PatronContact.username=='fred',
models.PatronContact.name=='Jeff Johnson',
models.PatronContact.email=='test@test.net',
models.PatronContact.contact=='irl',
models.PatronContact.times=='Anytime')).first()
self.assertIsNotNone(patroncontact)
#test missing email
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = '',
contact = 'phone',
phone = '',
times = 'Anytime',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Please enter your name and email address in the contact area",response.data)
self.assertIn("Jeff Johnson",response.data) # Verify that input data was retained
patroncontact=models.PatronContact.query.filter(and_(models.PatronContact.username=='fred', models.PatronContact.name=='Jeff Johnson', models.PatronContact.contact=='phone', models.PatronContact.times=='Anytime')).first()
self.assertIsNone(patroncontact)
#test missing contact preference
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
phone = '555-555-5555',
times = 'Anytime',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Please select a contact method",response.data)
patroncontact=models.PatronContact.query.filter(and_(models.PatronContact.username=='fred', models.PatronContact.name=='Jeff Johnson', models.PatronContact.email=='test@test.net', models.PatronContact.phone=='555-555-5555', models.PatronContact.times=='Anytime')).first()
self.assertIsNone(patroncontact)
#test missing phone number
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'phone',
phone = '',
times = 'Anytime',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Please enter your phone number",response.data)
patroncontact=models.PatronContact.query.filter(and_(models.PatronContact.username=='fred', models.PatronContact.name=='Jeff Johnson', models.PatronContact.email=='test@test.net', models.PatronContact.contact=='phone', models.PatronContact.times=='Anytime')).first()
self.assertIsNone(patroncontact)
#test incomplete phone number
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'phone',
phone = '555-5555',
times = 'Anytime',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Your phone number must include the area code",response.data)
#Add chat and email options to fred's contact preferences
staff = models.Staff.query.get('fred')
staff.chat, staff.email = True, True
self.session.add(staff)
self.session.commit()
response = self.app.get("/contact/fred")
self.assertIn("Online Chat",response.data)
#Test missing chat request info
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'chat',
chat = '',
handle = 'bigDog',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Please input your preferred chat service and handle",response.data)
#test email entry
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'phone',
phone = '555-5555',
times = 'Anytime',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Your phone number must include the area code",response.data)
#test email entry
response = c.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'email',
phone = '555-555-5555',
times = 'Anytime',
likes = 'I like books',
dislikes = 'Sans books',
comment = 'No comment',
audience = 'adults,children',
format_pref = 'book,eb',
chat = 'Skype',
handle = 'bigDog',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("contact request was received",response.data)
patroncontact=models.PatronContact.query.filter(and_(models.PatronContact.username=='fred', models.PatronContact.name=='Jeff Johnson', models.PatronContact.email=='test@test.net', models.PatronContact.contact=='email', \
models.PatronContact.likes=='I like books', models.PatronContact.dislikes=='Sans books', models.PatronContact.comment=='No comment', models.PatronContact.format_pref=='book,eb', models.PatronContact.audience=='adults,children')).first()
self.assertIsNotNone(patroncontact)
#test incomplete location info on book to speak request
response = c.post("/contact/fred?speak=True",data=dict(
test = True,
contact = 'speak',
name = 'Jeff Johnson',
email = 'test@test.net',
location = '',
comment = 'anything',
org = 'CincyPy',
mult = False,
times = '05/04/2016 2:30 PM',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Please provide the address for where you would",response.data)
#test incomplete location info on book to speak request
response = c.post("/contact/fred?speak=True",data=dict(
test = True,
contact = 'speak',
name = 'Jeff Johnson',
email = 'test@test.net',
location = 'My house',
comment = 'anything',
org = 'CincyPy',
mult = False,
times = '05/04/2016 2:30 PM',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("contact request was received",response.data)
patroncontact=models.PatronContact.query.filter(and_(models.PatronContact.username=='fred', models.PatronContact.name=='Jeff Johnson', models.PatronContact.email=='test@test.net', models.PatronContact.contact=='speak', \
models.PatronContact.location=='My house', models.PatronContact.comment=='anything', models.PatronContact.org=='CincyPy', models.PatronContact.times=='05/04/2016 2:30 PM')).first()
self.assertIsNotNone(patroncontact)
def test_edit_patroncontact(self):
#test patron contact exists on librarian page
self.login("fred", "fred")
with self.app as c:
response = c.get("/librarian")
self.assertIn("Joe Johnson",response.data) # Test that patron contact request is shown
#confirm status can be changed
response = self.app.post("/contact_status/1",data=dict(
status = 'pending',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertIn("Joe Johnson Patron request status has been updated",response.data)
self.assertIn("2016-01-07",response.data)
patroncontact=models.PatronContact.query.filter(and_(models.PatronContact.username=='fred',
models.PatronContact.name=='Joe Johnson',
models.PatronContact.email=='jjohanson@bigpimpn.net',
models.PatronContact.contact=='phone',
models.PatronContact.phone=='5555555555',
models.PatronContact.times=='M-Th 12-2 pm',
models.PatronContact.status=='pending')).first()
self.assertIsNotNone(patroncontact)
#confirm closed contact requests are not shown
response = self.app.post("/contact_status/1",data=dict(
status = 'closed',
_csrf_token = flask.session['_csrf_token'],
), follow_redirects=True)
self.assertNotIn("2016-01-07",response.data)
patroncontact=models.PatronContact.query.filter(and_(models.PatronContact.username=='fred',
models.PatronContact.name=='Joe Johnson',
models.PatronContact.email=='jjohanson@bigpimpn.net',
models.PatronContact.contact=='phone',
models.PatronContact.phone=='5555555555',
models.PatronContact.times=='M-Th 12-2 pm',
models.PatronContact.status=='closed')).first()
self.assertIsNotNone(patroncontact)
if __name__ == '__main__':
unittest.main()