forked from CincyPy/LibraryWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.py
More file actions
635 lines (582 loc) · 27.5 KB
/
tests.py
File metadata and controls
635 lines (582 loc) · 27.5 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
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)
self.session = library.db.session
def tearDown(self):
models.Base.metadata.drop_all(bind=library.db.engine)
def login(self,u,p):
response = self.app.post('/login', data=dict(
username=u,
password=p,
), follow_redirects=True)
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):
#test initial get request
response = self.app.get('/login')
self.assertIn("Welcome to the Staff Login",response.data)
#test invalid user
response = self.app.post('/login', data=dict(
username="invalid",
password="invalid",
), follow_redirects=True)
self.assertIn('Invalid Credentials', response.data)
#test valid user
with self.app:
response = self.app.post('/login', data=dict(
username="fred",
password="fred",
), follow_redirects=True)
self.assertEquals(flask.session["logged_in_name"],"fred")
response = self.app.post('/login', data=dict(
username="fred",
password="fred",
), follow_redirects=True)
self.assertIn('Welcome to the Librarian Staff Page', response.data)
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.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")
response = self.app.post("/adduser",data=dict(
username="t",
password="t",
f_name="",
l_name="",
phone="",
emailaddress=""),follow_redirects=True)
self.assertIn("All fields are required. Please try again.",response.data)
response = self.app.post("/adduser",data=dict(
username="",
password="",
f_name="t",
l_name="t",
phone="",
emailaddress=""),follow_redirects=True)
self.assertIn("All fields are required. Please try again.",response.data)
#try with bogus phone number
response = self.app.post("/adduser",data=dict(
username="t",
password="t",
f_name="t",
l_name="t",
phone="1112222",
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 = self.app.post("/adduser",data=dict(
username="t",
password="t",
f_name="t",
l_name="t",
phone="1112223333",
emailaddress="test@testing.com"),follow_redirects=True)
staff=models.Staff.query.filter(and_(models.Staff.username=='t', models.Staff.password=='t', models.Staff.f_name=='t', models.Staff.l_name=='t', models.Staff.phonenumber==1112223333, models.Staff.emailaddress=='test@testing.com')).first()
self.assertIsNotNone(staff)
#try adding an existing username
response = self.app.post("/adduser",data=dict(
username="t",
password="t",
f_name="t",
l_name="t",
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 = self.app.post("/adduser",data=dict(
username="u",
password="u",
f_name="u",
l_name="u",
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 = self.app.post("/adduser",data=dict(
username="u",
password="u",
f_name="u",
l_name="u",
phone="111-222-3333",
emailaddress="test2@testing.com"),follow_redirects=True)
staff=models.Staff.query.filter(and_(models.Staff.username=='u', models.Staff.password=='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)
def test_deleteuser(self):
# 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")
# can't delete admin
response = self.app.post("/deleteuser/admin", data={}, follow_redirects=True)
self.assertIn("You are not authorized to perform this action.", response.data)
# deleting user removed recommended readings and user
response = self.app.post("/deleteuser/elmo", data={}, 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)
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")
response = self.app.post("/edit-profile/fred",data=dict(
f_name = 'Freddy',
l_name = 'Fredderson',
), 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==1, models.Staff.irl==1, models.Staff.email==0, models.Staff.chat==0)).first()
self.assertIsNotNone(staff)
#try adding interests (and change name back to Fred)
self.login("fred","fred")
response = self.app.post("/edit-profile/fred",data=dict(
f_name = 'Fred',
l_name = 'Fredderson',
interests = 'books',
), follow_redirects=True)
self.assertIn("Profile updated",response.data)
staff=models.Staff.query.filter(and_(models.Staff.username=='fred', models.Staff.f_name=='Fred', models.Staff.l_name=='Fredderson', models.Staff.emailaddress=='KentonCountyLibrary@gmail.com', models.Staff.interests=='books',\
models.Staff.phonenumber=='2222222222', models.Staff.bio=="I am Fred's incomplete bio", models.Staff.phone==1, models.Staff.irl==1, models.Staff.email==0, models.Staff.chat==0)).first()
self.assertIsNotNone(staff)
#try changing with incorrect phone number
self.login("fred","fred")
response = self.app.post("/edit-profile/fred",data=dict(
emailaddress = 'test@test.net',
phonenumber = '111-1111',
), 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.f_name=='Fred', models.Staff.l_name=='Fredderson', models.Staff.emailaddress=='test@test.net', models.Staff.interests=='books',\
models.Staff.phonenumber=='1111111', models.Staff.bio=="I am Fred's incomplete bio", models.Staff.phone==1, models.Staff.irl==1, models.Staff.email==0, models.Staff.chat==0)).first()
self.assertIsNone(staff)
#try changing email and phone number
self.login("fred","fred")
response = self.app.post("/edit-profile/fred",data=dict(
emailaddress = 'test@test.net',
phonenumber = '111-111-1111',
), follow_redirects=True)
self.assertIn("Profile updated",response.data)
staff=models.Staff.query.filter(and_(models.Staff.username=='fred', models.Staff.f_name=='Fred', models.Staff.l_name=='Fredderson', models.Staff.emailaddress=='test@test.net', models.Staff.interests=='books',\
models.Staff.phonenumber=='1111111111', models.Staff.bio=="I am Fred's incomplete bio", models.Staff.phone==1, models.Staff.irl==1, models.Staff.email==0, models.Staff.chat==0)).first()
self.assertIsNotNone(staff)
#try adding email and chat contact pref (change email and phone number back)
self.login("fred","fred")
response = self.app.post("/edit-profile/fred",data=dict(
emailaddress = 'KentonCountyLibrary@gmail.com',
phonenumber = '222-222-2222',
email = 'on',
chat = 'on',
), follow_redirects=True)
self.assertIn("Profile updated",response.data)
staff=models.Staff.query.filter(and_(models.Staff.username=='fred', models.Staff.f_name=='Fred', models.Staff.l_name=='Fredderson', models.Staff.emailaddress=='KentonCountyLibrary@gmail.com', models.Staff.interests=='books',\
models.Staff.phonenumber=='2222222222', models.Staff.bio=="I am Fred's incomplete bio", models.Staff.phone==1, models.Staff.irl==1, models.Staff.email==1, models.Staff.chat==1)).first()
self.assertIsNotNone(staff)
def test_addrecread(self):
# admin can edit, but book name must exist.
self.login("admin", "admin")
# admin EDIT - no book name
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="",
author="t",
comment="t",
ISBN="t",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("Book name is required.", response.data)
# admin EDIT - no ISBN
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("ISBN is required.", response.data)
# admin EDIT - no author
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="t",
author="",
comment="t",
ISBN="t",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("Author is required.", response.data)
# admin EDIT - no category
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="t",
category="",
sticky=1), follow_redirects=True)
self.assertIn("Category is required.", response.data)
# admin EDIT - with book name
self.login("admin", "admin")
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="t",
category="t",
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")
# fred ADD - no book name
response = self.app.post("/addrecread", data=dict(
book="",
author="t",
comment="t",
ISBN="t",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("Book name is required.", response.data)
# fred ADD - no ISBN
response = self.app.post("/addrecread", data=dict(
book="t",
author="t",
comment="t",
ISBN="",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("ISBN is required.", response.data)
# fred ADD - no author
response = self.app.post("/addrecread", data=dict(
book="t",
author="",
comment="t",
ISBN="t",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("Author is required.", response.data)
# fred ADD - no Cateogry
response = self.app.post("/addrecread", data=dict(
book="t",
author="t",
comment="t",
ISBN="t",
category="",
sticky=1), follow_redirects=True)
self.assertIn("Category is required.", response.data)
# fred ADD - with book name
response = self.app.post("/addrecread", data=dict(
book="t",
author="t",
comment="t",
ISBN="t",
category="t",
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
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="",
author="t",
comment="t",
ISBN="t",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("Book name is required.", response.data)
# fred EDIT - no ISBN name
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("ISBN is required.", response.data)
# fred EDIT - no author
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="t",
author="",
comment="t",
ISBN="t",
category="t",
sticky=1), follow_redirects=True)
self.assertIn("Author is required.", response.data)
# fred EDIT - no cateogry
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="t",
category="",
sticky=1), follow_redirects=True)
self.assertIn("Category is required.", response.data)
# fred EDIT - with book name
response = self.app.post("/addrecread", data=dict(
RLID="1",
book="t",
author="t",
comment="t",
ISBN="t",
category="t",
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")
response = self.app.post("/remrecread/"+str(rlid),data={},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):
#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 = self.app.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'irl',
times = 'Anytime',
), 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 = self.app.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = '',
contact = 'phone',
phone = '',
times = 'Anytime',
), 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 = self.app.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
phone = '555-555-5555',
times = 'Anytime',
), 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 = self.app.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'phone',
phone = '',
times = 'Anytime',
), 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 = self.app.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'phone',
phone = '555-5555',
times = 'Anytime',
), 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 = self.app.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'chat',
chat = '',
handle = 'bigDog',
), follow_redirects=True)
self.assertIn("Please input your preferred chat service and handle",response.data)
#test email entry
response = self.app.post("/contact/fred",data=dict(
test = True,
name = 'Jeff Johnson',
email = 'test@test.net',
contact = 'phone',
phone = '555-5555',
times = 'Anytime',
), follow_redirects=True)
self.assertIn("Your phone number must include the area code",response.data)
#test email entry
response = self.app.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',
), 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)
def test_edit_patroncontact(self):
#test patron contact exists on librarian page
self.login("fred", "fred")
response = self.app.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',
), 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',
), 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)
def test_github_ip_check(self):
publish = Publisher('192.168.0.1', "dontmatter", "")
self.assertFalse(publish.in_ip_address_range())
jsonResponse = requests.get("https://api.github.com/meta", auth=("KentonCountyLibrary-Cincypy", "CincyPyCoders2000"))
ipranges = jsonResponse.json()["hooks"]
ipranges = [list(ip_network(ip).hosts()) for ip in ipranges]
flat_range = list(chain.from_iterable(ipranges))
publish = Publisher(str(flat_range[0]), "dontmatter", "")
self.assertTrue(publish.in_ip_address_range())
if __name__ == '__main__':
unittest.main()