Esempio n. 1
0
 def test_movie_world_return_dvd_unsuccessful(self):
     movie_world = MovieWorld("Test")
     d = DVD("A", 1, 1254, "February", 10)
     c = Customer("Pesho", 20, 4)
     movie_world.add_customer(c)
     movie_world.add_dvd(d)
     result = movie_world.return_dvd(4, 1)
     self.assertEqual(result, "Pesho does not have that DVD")
Esempio n. 2
0
 def test_movie_world_rent_dvd_already_rented_by_user(self):
     movie_world = MovieWorld("Test")
     d = DVD("A", 1, 1254, "February", 10)
     c = Customer("Pesho", 20, 4)
     movie_world.add_customer(c)
     movie_world.add_dvd(d)
     movie_world.rent_dvd(4, 1)
     result = movie_world.rent_dvd(4, 1)
     self.assertEqual(result, "Pesho has already rented A")
Esempio n. 3
0
 def test_movie_world_rent_dvd_no_permision(self):
     movie_world = MovieWorld("Test")
     d = DVD("A", 1, 1254, "February", 18)
     c = Customer("Pesho", 16, 4)
     movie_world.add_customer(c)
     movie_world.add_dvd(d)
     result = movie_world.rent_dvd(4, 1)
     self.assertEqual(result,
                      "Pesho should be at least 18 to rent this movie")
Esempio n. 4
0
 def test_movie_world_repr(self):
     movie_world = MovieWorld("Test")
     d = DVD("A", 1, 1254, "February", 10)
     c = Customer("Pesho", 20, 4)
     movie_world.add_customer(c)
     movie_world.add_dvd(d)
     movie_world.rent_dvd(4, 1)
     actual = repr(movie_world).strip('\n')
     expected = "4: Pesho of age 20 has 1 rented DVD's (A)\n1: A (February 1254) has age restriction 10. Status: rented"
     self.assertEqual(actual, expected)
Esempio n. 5
0
 def test_movie_world_rent_dvd_success(self):
     movie_world = MovieWorld("Test")
     d = DVD("A", 1, 1254, "February", 10)
     c = Customer("Pesho", 20, 4)
     movie_world.add_customer(c)
     movie_world.add_dvd(d)
     result = movie_world.rent_dvd(4, 1)
     self.assertEqual(result, "Pesho has successfully rented A")
     self.assertEqual(d.is_rented, True)
     self.assertEqual(c.rented_dvds[0], d)
Esempio n. 6
0
 def test_movie_world_rent_dvd_already_rented(self):
     movie_world = MovieWorld("Test")
     d = DVD("A", 1, 1254, "February", 10)
     c = Customer("Pesho", 20, 4)
     c2 = Customer("Gosho", 26, 2)
     movie_world.add_customer(c)
     movie_world.add_customer(c2)
     movie_world.add_dvd(d)
     movie_world.rent_dvd(4, 1)
     result = movie_world.rent_dvd(2, 1)
     self.assertEqual(result, "DVD is already rented")
Esempio n. 7
0
    def __init__(self, name: str, age: int, id: int):
        self.name = name
        self.age = age
        self.id = id
        self.rented_dvds = []

    def __repr__(self):
        return f"{self.id}: {self.name} of age {self.age} has {len(self.rented_dvds)} " \
               f"rented DVD's ({', '.join([dvd.name for dvd in self.rented_dvds])})"


c1 = Customer("John", 16, 1)
c2 = Customer("Anna", 55, 2)

d1 = DVD("Black Widow", 1, 2020, "April", 18)
d2 = DVD.from_date(2, "The Croods 2", "23.12.2020", 3)

movie_world = MovieWorld("The Best Movie Shop")

movie_world.add_customer(c1)
movie_world.add_customer(c2)

movie_world.add_dvd(d1)
movie_world.add_dvd(d2)

print(movie_world.rent_dvd(1, 1))
print(movie_world.rent_dvd(2, 1))
print(movie_world.rent_dvd(1, 2))

print(movie_world)
Esempio n. 8
0
 def test_movie_world_add_customer_overflow(self):
     movie_world = MovieWorld("Test")
     for _ in range(11):
         movie_world.add_customer(Customer("Pesho", 20, 4))
     self.assertEqual(len(movie_world.customers), 10)
Esempio n. 9
0
 def test_movie_world_add_customer_success(self):
     movie_world = MovieWorld("Test")
     c = Customer("Pesho", 20, 4)
     movie_world.add_customer(c)
     self.assertEqual(movie_world.customers, [c])