def test_making_a_purchase(self): self.purchase = Purchase(1, 1, "17/01/2011") #id, customer, date_of_purchase self.purchase.id |should| equal_to (1) self.purchase.customer |should| equal_to(1) self.purchase.date |should| equal_to ("17/01/2011") self.purchase.add_product(1) self.purchase.add_product(1) self.purchase.products |should| equal_to([1, 1])
def test_a_purchase_in_the_warranty(self): self.purchase = Purchase(1, 1, "17/01/2010") #id, customer, date_of_purchase self.purchase.id |should| equal_to (1) self.purchase.customer |should| equal_to(1) self.purchase.date |should| equal_to ("17/01/2010") self.purchase.add_product(1) self.purchase.add_product(1) self.purchase.products |should| equal_to([1, 1]) self.purchase.is_my_purchase_in_the_warranty(1) |should| equal_to(True)
def it_make_an_exchange(self): #### SETUP #### self.storage = Storage("Arno", "MD-001", 3) self.storage.set_products_serials(["SD-2233", "SD-4444", "SD-5566"]) self.purchase = Purchase(1, 1, "17/01/2011") #id, customer, date_of_purchase #### SETUP #### self.exchange = Exchange(1, 1, "SN-2233", "Produto nao liga") #id, customer, serial, problem_of_product self.exchange.problem |should| equal_to ("Produto nao liga")
def it_make_a_purchase(self): #### SETUP #### self.storage = Storage("Arno", "MD-001", 3) self.storage.set_products_serials(["SD-2233", "SD-4444", "SD-5566"]) #### SETUP #### self.purchase = Purchase(1, 1, "17/01/2005") #id, customer, date_of_purchase self.purchase.id |should| equal_to (1) self.purchase.customer |should| equal_to(1) self.purchase.date |should| equal_to (date(2005, 1, 17)) self.purchase.sell_product("Arno", "MD-002", 1) self.purchase.products[0] |should| equal_to ("SD-2233") self.purchase.sell_product("Arno", "MD-002", 1) self.purchase.products[1] |should| equal_to ("SD-4444")
def it_verify_a_purchase_that_is_not_under_warranty(self): self.purchase = Purchase(1, 1, "17/01/2005") self.purchase.is_my_purchase_in_the_warranty() |should| equal_to(False)
def it_verify_a_purchase_in_the_warranty(self): self.purchase = Purchase(1, 1, "17/01/2011") self.purchase.is_my_purchase_in_the_warranty() |should| equal_to(True)
class TestPurchase(unittest.TestCase): def it_make_a_purchase(self): #### SETUP #### self.storage = Storage("Arno", "MD-001", 3) self.storage.set_products_serials(["SD-2233", "SD-4444", "SD-5566"]) #### SETUP #### self.purchase = Purchase(1, 1, "17/01/2005") #id, customer, date_of_purchase self.purchase.id |should| equal_to (1) self.purchase.customer |should| equal_to(1) self.purchase.date |should| equal_to (date(2005, 1, 17)) self.purchase.sell_product("Arno", "MD-002", 1) self.purchase.products[0] |should| equal_to ("SD-2233") self.purchase.sell_product("Arno", "MD-002", 1) self.purchase.products[1] |should| equal_to ("SD-4444") def it_verify_a_purchase_in_the_warranty(self): self.purchase = Purchase(1, 1, "17/01/2011") self.purchase.is_my_purchase_in_the_warranty() |should| equal_to(True) def it_verify_a_purchase_that_is_not_under_warranty(self): self.purchase = Purchase(1, 1, "17/01/2005") self.purchase.is_my_purchase_in_the_warranty() |should| equal_to(False) def it_make_an_exchange(self): #### SETUP #### self.storage = Storage("Arno", "MD-001", 3) self.storage.set_products_serials(["SD-2233", "SD-4444", "SD-5566"]) self.purchase = Purchase(1, 1, "17/01/2011") #id, customer, date_of_purchase #### SETUP #### self.exchange = Exchange(1, 1, "SN-2233", "Produto nao liga") #id, customer, serial, problem_of_product self.exchange.problem |should| equal_to ("Produto nao liga") def it_check_disponibility_of_equipments(self): self.storage = Storage("Arno", "MD-001", 3) self.storage.set_products_serials(["SD-2233", "SD-4444", "SD-5566"]) self.storage = Storage("Walita", "MD-005", 2) self.storage.set_products_serials(["SD-2266", "SD-4488"]) Storage.check_disponibility_of_equipments(self) |should| equal_to ("ArnoMD-0013WalitaMD-0052") def it_check_equipments_with_problems(self): #### SETUP #### self.storage = Storage("Walita", "MD-002", 3) self.storage.set_products_serials(["SD-2244", "SD-5544", "SD-6666"]) #### SETUP #### self.exchange = Exchange(1, 1, "SN-2233", "Produto nao liga") #id, customer, product_exchanged, problem_of_product self.exchange.problem |should| equal_to ("Produto nao liga") Exchange.verify_problems_with_equipments(self) |should| equal_to ("1Produto nao liga2011-03-181") def it_check_equipments_with_problems(self): #### SETUP #### self.storage = Storage("Walita", "MD-002", 3) self.storage.set_products_serials(["SD-2244", "SD-5544", "SD-6666"]) self.exchange = Exchange(1, 1, "SN-2233", "Produto nao liga") #id, customer, product_exchanged, problem_of_product self.exchange = Exchange(1, 1, "SN-2234", "Colocaram cafe no lugar da agua") #id, customer, product_exchanged, problem_of_product #### SETUP #### Exchange.verify_problems_with_equipments(self) |should| equal_to ('1Produto nao liga2011-04-0511Colocaram cafe no lugar da agua2011-04-051')