Пример #1
0
def test_assign_supplicant():
    """The system needs to assign a supplicant to a user."""
    my_controller = controller.Controller()
    my_controller.create_user("John", "*****@*****.**", 1)
    my_controller.create_user("Andrew", "*****@*****.**", 2)
    my_controller.create_user("Matthew", "*****@*****.**", 3)
    my_controller.add_supplicant(1, 3)
    assert my_controller.users[0].supplicant_id == 3
    assert my_controller.users[2].prophet_id == 1
Пример #2
0
def test_get_user_by_id_bad_id():
    """The system should be able to retrieve user by ID.

    Do not check by name because name can be changed.
    """
    my_controller = controller.Controller()
    my_controller.create_user("John", "*****@*****.**", 1)
    with pytest.raises(error.IDError):
        my_controller.get_user(2)
Пример #3
0
def test_get_user_by_id():
    """The system should be able to retrieve user by ID.

    Do not check by name because name can be changed.
    """
    my_controller = controller.Controller()
    my_controller.create_user("John", "*****@*****.**", 1)
    the_user = my_controller.get_user(1)
    assert the_user.my_id == 1
Пример #4
0
def test_user_writes_prophecy_and_it_is_delivered_to_supplicant():
    """The system checks a user to see that a prophecy has been written and changed prophecy_received in supplicant."""
    my_controller = controller.Controller()
    my_controller.create_user("John", "*****@*****.**", 1)
    my_controller.create_user("Andrew", "*****@*****.**", 2)
    john = my_controller.get_user(1)
    andrew = my_controller.get_user(2)
    john.prophecy_given = True
    john.supplicant_id = 2
    my_controller.prophecy_completed_deliver_to_supplicant(1)
    assert andrew.prophecy_received is True
Пример #5
0
def test_user_reads_prophecy():
    """The system allows the user to read their prophecy.

    Usually I make sure that each unit test stands COMPLETELY alone and doesn't depend on anything else working.
    But in this case, I think that would be a bit over-complicated. Also, by doing TDD, we will know something
    has broken by other tests failing as well. (I hope).

    In essence this is closer to an integration test.
    """
    my_controller = controller.Controller()
    my_controller.create_user("John", "*****@*****.**", 1)
    my_controller.create_user("Andrew", "*****@*****.**", 2)
    john = my_controller.get_user(1)
    john.create_prophecy(prophetic_words="There will be 10 more of us.")
    my_controller.add_supplicant(1, 2)
    my_controller.prophecy_completed_deliver_to_supplicant(1)
    the_prophecy = my_controller.retrieve_prophecy_for_supplicant(2)
    assert the_prophecy.get_text_prophecy() == "There will be 10 more of us."
Пример #6
0
def test_create_user():
    """The system needs to create users."""
    my_controller = controller.Controller()
    my_controller.create_user("John", "*****@*****.**", 1)
    assert my_controller.users[0].name == "John"
Пример #7
0
def test_assign_supplicant_bad_supplicant():
    my_controller = controller.Controller()
    my_controller.create_user("John", "*****@*****.**", 1)
    my_controller.create_user("Andrew", "*****@*****.**", 2)
    with pytest.raises(error.IDError):
        my_controller.add_supplicant(1, 3)