Esempio n. 1
0
 def test_from_response_should_map_datetime(self):
     mail = Mail.from_response({'mail_timestamp': '1392459985'})
     expect(mail.datetime).to.equal(datetime(2014, 2, 15, 10, 26, 25, tzinfo=utc))
Esempio n. 2
0
 def test_from_response_should_map_read_as_bool_true(self):
     mail = Mail.from_response({'mail_read': '1'})
     expect(mail.read).to.be.true
Esempio n. 3
0
 def test_from_response_should_default_read_to_false(self):
     mail = Mail.from_response({})
     expect(mail.read).to.be.false
Esempio n. 4
0
 def test_from_response_should_map_excerpt(self):
     mail = Mail.from_response({'mail_excerpt': 'A brief message....'})
     expect(mail.excerpt).to.equal('A brief message....')
Esempio n. 5
0
 def test_from_response_should_default_guid_to_none(self):
     mail = Mail.from_response({})
     expect(mail.guid).to.be.none
Esempio n. 6
0
 def test_from_response_should_default_exerpt_to_none(self):
     mail = Mail.from_response({})
     expect(mail.exerpt).to.be.none
Esempio n. 7
0
 def test_from_response_should_default_body_to_none(self):
     mail = Mail.from_response({})
     expect(mail.body).to.be.none
Esempio n. 8
0
 def test_time_should_be_derived_from_datetime(self):
     mail = Mail(datetime=datetime(2014, 2, 16, 19, 34))
     expect(mail.time).to.equal(time(19, 34))
Esempio n. 9
0
 def test_from_response_should_map_subject(self):
     mail = Mail.from_response({'mail_subject': 'Hello'})
     expect(mail.subject).to.equal('Hello')
Esempio n. 10
0
 def test_from_response_should_default_body_to_none(self):
     mail = Mail.from_response({})
     expect(mail.body).to.be.none
Esempio n. 11
0
 def test_from_response_should_ignore_unknown_properties(self):
     mail = Mail.from_response({
         "mail_recipient": "john",
     })
     expect(mail).to.not_have.property('recipient')
Esempio n. 12
0
 def test_from_response_should_map_body(self):
     mail = Mail.from_response(
         {'mail_body': 'A brief message from our sponsors'})
     expect(mail.body).to.equal('A brief message from our sponsors')
Esempio n. 13
0
 def test_from_response_should_not_map_typo_exerpt_property(self):
     mail = Mail.from_response({'mail_exerpt': 'A brief message....'})
     mail = Mail.from_response({'mail_excerpt': 'A brief message....'})
     expect(mail.exerpt).to.be.none
Esempio n. 14
0
 def test_from_response_should_default_excerpt_to_none(self):
     mail = Mail.from_response({})
     expect(mail.excerpt).to.be.none
Esempio n. 15
0
 def test_from_response_should_default_datetime_to_none(self):
     mail = Mail.from_response({})
     expect(mail.datetime).to.be.none
Esempio n. 16
0
 def test_from_response_should_map_sender(self):
     mail = Mail.from_response({'mail_from': '*****@*****.**'})
     expect(mail.sender).to.equal('*****@*****.**')
Esempio n. 17
0
 def test_from_response_should_map_exeprt(self):
     mail = Mail.from_response({'mail_exerpt': 'A brief message....'})
     expect(mail.exerpt).to.equal('A brief message....')
Esempio n. 18
0
 def test_from_response_should_default_sender_to_none(self):
     mail = Mail.from_response({})
     expect(mail.sender).to.be.none
Esempio n. 19
0
 def test_from_response_should_map_body(self):
     mail = Mail.from_response({'mail_body': 'A brief message from our sponsors'})
     expect(mail.body).to.equal('A brief message from our sponsors')
Esempio n. 20
0
 def test_from_response_should_map_guid(self):
     mail = Mail.from_response({'mail_id': '12345'})
     expect(mail.guid).to.equal('12345')
Esempio n. 21
0
 def test_from_response_should_ignore_unknown_properties(self):
     mail = Mail.from_response({
         "mail_recipient": "john",
     })
     expect(mail).to.not_have.property('recipient')
Esempio n. 22
0
 def test_from_response_should_not_map_typo_exerpt_property(self):
     mail = Mail.from_response({'mail_exerpt': 'A brief message....'})
     mail = Mail.from_response({'mail_excerpt': 'A brief message....'})
     expect(mail.exerpt).to.be.none