Beispiel #1
0
    def test_can_list_entries_in_address_book(self):
        test_person_1 = Entry("John Doe")
        test_person_2 = Entry("Jane Doe")

        self.address_book.add_entry(test_person_1)
        self.address_book.add_entry(test_person_2)

        expected = [test_person_1, test_person_2]
        result = self.address_book.get_entries()

        self.assertEqual(expected, result)
Beispiel #2
0
    def test_cli_prints_a_list_of_entries(self):
        test_book = AddressBook()
        test_book.add_entry(Entry(name="Test entry 1"))
        test_book.add_entry(Entry(name="Test entry 2"))

        cli = CLI()

        with mock.patch("builtins.print") as mock_print:
            cli.display_entries(test_book)

        self.assertEqual(mock_print.call_count, 2)
        # mock.assert_called_with() returns the final call
        mock_print.assert_called_with("Test entry 2")
Beispiel #3
0
    def test_that_entry_can_contain_organization_name(self):
        test_entry = Entry(name="John Doe", organization="ACME")

        expected = "ACME"
        result = test_entry.organization

        self.assertEqual(result, expected)
Beispiel #4
0
    def test_entry_can_have_a_phone_number(self):
        test_phone_number = "555-1234"
        test_entry_with_phone_number = Entry(self.test_entry_name,
                                             phone_number=test_phone_number)

        result = test_entry_with_phone_number.phone_number
        self.assertEqual(test_phone_number, result)
Beispiel #5
0
    def test_entry_name_is_composed_of_first_and_last_name(self):
        test_name = {
            "first_name": "John",
            "last_name": "Smith",
        }
        test_person = Entry(test_name)

        expected_full_name = "John Smith"
        result = test_person.name

        self.assertEqual(expected_full_name, result)
Beispiel #6
0
    def test_entry_can_have_multiple_phone_numbers(self):
        test_email = "*****@*****.**"
        another_test_email = "*****@*****.**"

        test_entry_with_multiple_email_addresses = Entry(
            self.test_entry_name, email=[test_email, another_test_email])

        expected = [str(test_email), str(another_test_email)]
        result = test_entry_with_multiple_email_addresses.email

        self.assertEqual(expected, result)
Beispiel #7
0
    def test_entry_can_have_an_address(self):
        test_address = {
            'Street 1': 'Some street 1',
            'Street 2': 'Some more info',
            'Postal code': 12345,
            'City': 'Test City',
            'Country': 'Test Country'
        }
        test_entry_with_address = Entry(self.test_entry_name,
                                        address=test_address)

        result = test_entry_with_address.address
        self.assertEqual(test_address, result)
Beispiel #8
0
    def test_entry_can_have_multiple_addresses(self):
        test_address1 = {
            'Street 1': 'Some street 1',
            'Street 2': 'Some more info',
            'Postal code': 12345,
            'City': 'Test City',
            'Country': 'Test Country'
        }

        test_address2 = {
            'Street 1': 'Another street 1',
            'Street 2': 'Even more info',
            'Postal code': 67890,
            'City': 'Different Test City',
            'Country': 'Another Test Country'
        }

        test_entry_with_multiple_addresses = Entry(
            self.test_entry_name, address=[test_address1, test_address2])

        expected = [test_address1, test_address2]
        result = test_entry_with_multiple_addresses.address

        self.assertEqual(expected, result)
Beispiel #9
0
 def test_entry_must_have_a_name(self):
     with self.assertRaises(TypeError):
         Entry()
Beispiel #10
0
 def setUp(self):
     self.test_entry_name = "Bob Smith"
     self.test_entry = Entry(name=self.test_entry_name)
Beispiel #11
0
class TestEntry(TestCase):
    def setUp(self):
        self.test_entry_name = "Bob Smith"
        self.test_entry = Entry(name=self.test_entry_name)

    def test_entry_must_have_a_name(self):
        with self.assertRaises(TypeError):
            Entry()

    def test_entry_can_have_an_address(self):
        test_address = {
            'Street 1': 'Some street 1',
            'Street 2': 'Some more info',
            'Postal code': 12345,
            'City': 'Test City',
            'Country': 'Test Country'
        }
        test_entry_with_address = Entry(self.test_entry_name,
                                        address=test_address)

        result = test_entry_with_address.address
        self.assertEqual(test_address, result)

    def test_entry_can_have_a_phone_number(self):
        test_phone_number = "555-1234"
        test_entry_with_phone_number = Entry(self.test_entry_name,
                                             phone_number=test_phone_number)

        result = test_entry_with_phone_number.phone_number
        self.assertEqual(test_phone_number, result)

    def test_entry_can_have_email_address(self):
        test_email = "*****@*****.**"
        test_entry_with_email = Entry(self.test_entry_name, email=test_email)

        self.assertEqual(test_entry_with_email.email, test_email)

    def test_entry_can_have_multiple_phone_numbers(self):
        test_email = "*****@*****.**"
        another_test_email = "*****@*****.**"

        test_entry_with_multiple_email_addresses = Entry(
            self.test_entry_name, email=[test_email, another_test_email])

        expected = [str(test_email), str(another_test_email)]
        result = test_entry_with_multiple_email_addresses.email

        self.assertEqual(expected, result)

    def test_entry_can_have_multiple_addresses(self):
        test_address1 = {
            'Street 1': 'Some street 1',
            'Street 2': 'Some more info',
            'Postal code': 12345,
            'City': 'Test City',
            'Country': 'Test Country'
        }

        test_address2 = {
            'Street 1': 'Another street 1',
            'Street 2': 'Even more info',
            'Postal code': 67890,
            'City': 'Different Test City',
            'Country': 'Another Test Country'
        }

        test_entry_with_multiple_addresses = Entry(
            self.test_entry_name, address=[test_address1, test_address2])

        expected = [test_address1, test_address2]
        result = test_entry_with_multiple_addresses.address

        self.assertEqual(expected, result)

    def test_entry_name_is_composed_of_first_and_last_name(self):
        test_name = {
            "first_name": "John",
            "last_name": "Smith",
        }
        test_person = Entry(test_name)

        expected_full_name = "John Smith"
        result = test_person.name

        self.assertEqual(expected_full_name, result)

    def test_that__repr_returns_the_name_of_the_entry(self):
        result = self.test_entry.__repr__()

        self.assertEqual(result, self.test_entry.name)

    def test_that_entry_can_contain_organization_name(self):
        test_entry = Entry(name="John Doe", organization="ACME")

        expected = "ACME"
        result = test_entry.organization

        self.assertEqual(result, expected)

    def test_entries_automatically_get_a_uuid(self):
        uuid = self.test_entry._uuid

        self.assertIsNotNone(uuid)
Beispiel #12
0
    def test_entry_can_have_email_address(self):
        test_email = "*****@*****.**"
        test_entry_with_email = Entry(self.test_entry_name, email=test_email)

        self.assertEqual(test_entry_with_email.email, test_email)
Beispiel #13
0
    def test_can_get_an_entry_by_name(self):
        self.address_book.add_entry(Entry("John Doe"))

        entry = self.address_book.get_entry("John Doe")

        self.assertEqual(entry, self.address_book.get_entries()[0])
Beispiel #14
0
    def test_can_add_entry_to_address_book(self):
        test_person = Entry("John Doe")

        self.address_book.add_entry(test_person)