Example #1
0
 def test_search(self):
     c = MovieController(Repository("testSearch", "d"))
     c.addItem(Movie(3, "action", "sdf", "family"))
     self.assertEqual(c.searchMovieByGenre("action"), [])
     c.removeMovie(3)
     self.assertEqual(c.searchMovieByTitle("d"), [])
     self.assertEqual(c.searchMovieByDescription("descriere"), [])
     self.assertRaises(ValueError, c.searchMovieByDescription, "")
     self.assertRaises(ValueError, c.searchMovieByGenre, "")
     self.assertRaises(ValueError, c.searchMovieByTitle, "")
Example #2
0
 def test_AddRental2(self):
     open("testRentalsRental", 'w').close()
     open("testRentalsMovie", 'w').close()
     open("testRentalsClients", 'w').close()
     repo = Repository("testRentalsRental", "test")
     movieRepo = Repository("testRentalsMovie", "tes2")
     mc = MovieController(movieRepo)
     mc.addMovie("2", "title", "sds", "action")
     clientRepo = Repository("testRentalsClients", "test3")
     cc = ClientController(clientRepo)
     cc.addClient('2', 'Ghita')
     controller = RentalController(repo, cc, mc)
     self.assertEqual(
         controller.addRental('2', '2', '2', "2017-10-23", "2018-10-23",
                              -1), True)
Example #3
0
 def test_raises(self):
     repo = Repository("testRentalsRental", "test")
     movieRepo = Repository("testRentalsMovie", "tes2")
     mc = MovieController(movieRepo)
     clientRepo = Repository("testRentalsClients", "test3")
     cc = ClientController(clientRepo)
     controller = RentalController(repo, cc, mc)
     self.controller.undo()
Example #4
0
 def test_RentalSetters(self):
     r = Rental(1, 2, 3, "2017-10-20", "2017-11-20", "2018-01-20")
     r.id = 4
     r.movieId = 5
     r.clientId = 6
     r.returnedDate = "2017-12-20"
     r.dueDate = "2017-12-20"
     r.rentedDate = "2017-08-09"
     a = r.dueDate
     a = r.returnedDate
     self.assertNotEqual(
         r, Rental(4, 5, 6, "2017-12-20", "2017-12-20", "2017-08-09"))
     repo = Repository("testRentalsRental", "test")
     movieRepo = Repository("testRentalsMovie", "tes2")
     mc = MovieController(movieRepo)
     clientRepo = Repository("testRentalsClients", "test3")
     cc = ClientController(clientRepo)
     controller = RentalController(repo, cc, mc)
     self.assertEqual(controller.lateRentals(), [])
     self.assertEqual(controller.allRentedMovies(), mc.getAllMovies())
     s = mc.getAllMovies()
     self.assertEqual(controller.mostRentedMoviesByNumber(),
                      controller.mostRentedMoviesByNumber())
     self.assertEqual(controller.mostRentedMoviesByDays(),
                      controller.mostRentedMoviesByDays())
     self.assertRaises(ValueError, controller.updateClientIdFromRental, "s",
                       "2")
     self.assertRaises(ValueError, controller.updateClientIdFromRental, "2",
                       "s")
     controller.removeAllAppOfClient("1")
     controller.removeAllAppOfMovie("1")
     controller.updateMovieIdFromRental("1", "1")
     controller.updateClientIdFromRental("1", "1")
     self.assertRaises(ValueError, controller.updateClientIdFromRental, "2",
                       "s")
     self.assertRaises(ValueError, controller.updateClientIdFromRental, "s",
                       "2")
    def config(self):
        clientRepo = None
        movieRepo = None
        rentalRepo = None
        if self.__settings['repository'] == "text-file":
            clientRepo = FileRepository(self.__settings["clients"],
                                        "Client repo", Client.clientToFile,
                                        Client.clientFromFile)
            movieRepo = FileRepository(self.__settings["movies"], "Movie Repo",
                                       Movie.movieToFile, Movie.movieFromFile)
            rentalRepo = FileRepository(self.__settings["rentals"],
                                        "Rental repo", Rental.rentalToFile,
                                        Rental.rentalFromFile)
        if self.__settings['repository'] == "in-memory":
            clientRepo = InMemoryRepository()
            movieRepo = InMemoryRepository()
            rentalRepo = InMemoryRepository()

        if self.__settings['repository'] == "binary":
            clientRepo = PickleRepo(self.__settings["clients"], "Client repo")
            movieRepo = PickleRepo(self.__settings["movies"], "Movie Repo")
            rentalRepo = PickleRepo(self.__settings["rentals"], "Rental repo")

        if self.__settings['repository'] == 'json':
            clientRepo = JsonRepo(self.__settings["clients"], "ClientRepo",
                                  Client.clientFromJson)
            movieRepo = JsonRepo(self.__settings["movies"], "Movie Repo",
                                 Movie.movieFromJson)
            rentalRepo = JsonRepo(self.__settings["rentals"], "Rental repo",
                                  Rental.rentalFromJson)
        if self.__settings['repository'] == "sql":
            clientRepo = SqlRepo(config, Client, Client.clientToSql, "client",
                                 "(id,name)")
            movieRepo = SqlRepo(config, Movie, Movie.movieToSql, "movie",
                                "(id,title,description,genre)")
            rentalRepo = SqlRepo(
                config, Rental, Rental.rentalToSql, "rental",
                "(id,movieId,clientId,rentedDate,dueDate,returnedDate)")
        mc = MovieController(movieRepo)
        cc = ClientController(clientRepo)
        rc = RentalController(rentalRepo, cc, mc)
        if self.__settings['ui'] == "console":
            console = Console.ConsoleUI(mc, cc, rc)
            console.mainMenu()
        if self.__settings['ui'] == 'gui':
            MainApp.clientController = cc
            MainApp.rentalController = rc
            MainApp.movieController = mc
            pyforms.startApp(MainApp)
Example #6
0
 def setUp(self):
     self.movie = Movie(3, 'Titanic4', 'supers', 'action')
     self.repo = Repository('testMovies', 'testMovies')
     self.controller = MovieController(self.repo)
     if self.controller.getMovieById(77) is not False:
         self.controller.removeMovie(77)
     if self.controller.getMovieById(772) is not False:
         self.controller.removeMovie(772)
     if self.controller.getMovieById(773) is not False:
         self.controller.removeMovie(773)
     if self.controller.getMovieById(23) is False:
         self.controller.addMovie("23", "title", "description", "action")
     if self.controller.getMovieById('233333') is not False:
         self.controller.removeMovie('233333')
     if self.controller.getMovieById(20) is False:
         self.controller.addMovie("20", "title", "description", "action")
     if self.controller.getMovieById(200) is False:
         self.controller.addMovie("200", "title", "description", "action")
     if self.controller.getMovieById(90) is False:
         self.controller.addMovie("90", "title", "description", "action")
     if self.controller.getMovieById(123) is False:
         self.controller.addMovie("123", "title", "description", "action")
     if self.controller.getMovieById(234) is False:
         self.controller.addMovie("234", "title", "description", "action")
     if self.controller.getMovieById(33) is False:
         self.controller.addMovie("33", "title", "description", "action")
     if self.controller.getMovieById(90) is not False:
         self.controller.removeMovie(99)
     if self.controller.getMovieById(323) is False:
         self.controller.addMovie("323", "title", "description", "action")
     if self.controller.getMovieById(929) is not False:
         self.controller.removeMovie(929)
     if self.controller.getMovieById(33) is False:
         self.controller.addMovie("333", "title", "description", "action")
     if self.controller.getMovieById(939) is not False:
         self.controller.removeMovie(939)
Example #7
0
 def test_removeRental2(self):
     f = open("testRentalsRental", 'w')
     f.write("2, 2, 2,  2017-11-20, 2019-11-20, -1")
     f.close()
     f = open("testRentalsMovie", 'w')
     f.write("2, title, sdfs, action")
     f.close()
     f = open("testRentalsClients", 'w')
     f.write("2, title")
     f.close()
     repo = Repository("testRentalsRental", "test")
     movieRepo = Repository("testRentalsMovie", "tes2")
     mc = MovieController(movieRepo)
     clientRepo = Repository("testRentalsClients", "test3")
     cc = ClientController(clientRepo)
     controller = RentalController(repo, cc, mc)
     self.assertEqual(controller.removeRental('2'), True)
Example #8
0
 def test_getRentalById2(self):
     f = open("testRentalsRental", 'w')
     f.write("2, 2, 2,  2017-11-20, 2019-11-20, -1")
     f.close()
     f = open("testRentalsMovie", 'w')
     f.write("2, title, sdfs, action")
     f.close()
     f = open("testRentalsClients", 'w')
     f.write("2, title")
     f.close()
     repo = Repository("testRentalsRental", "test")
     movieRepo = Repository("testRentalsMovie", "tes2")
     mc = MovieController(movieRepo)
     clientRepo = Repository("testRentalsClients", "test3")
     cc = ClientController(clientRepo)
     controller = RentalController(repo, cc, mc)
     rental = Rental("2", "2", "2", "2017-11-20", "2019-11-20", "-1")
     self.assertEqual(controller.getRentalById(2), rental)
Example #9
0
 def test_UpdateRental(self):
     f = open("testRentalsRental", 'w')
     f.write("1, 1, 1,  2017-11-20, 2019-11-20, -1")
     f.close()
     f = open("testRentalsMovie", 'w')
     f.write("1, title, sdfs, action")
     f.close()
     f = open("testRentalsClients", 'w')
     f.write("1, title")
     f.close()
     repo = Repository("testRentalsRental", "test")
     movieRepo = Repository("testRentalsMovie", "tes2")
     mc = MovieController(movieRepo)
     clientRepo = Repository("testRentalsClients", "test3")
     cc = ClientController(clientRepo)
     controller = RentalController(repo, cc, mc)
     self.assertEqual(
         controller.updateRental('1', '1', '1', '1', '2017-01-23',
                                 '2017-11-20', -1), True)
Example #10
0
 def test_returnedMovie(self):
     f = open("testRentalsRental", 'w')
     f.write("1, 2, 2,  2017-11-20, 2019-11-20, -1")
     f.close()
     f = open("testRentalsMovie", 'w')
     f.write("1, title, sdfs, action")
     f.close()
     f = open("testRentalsClients", 'w')
     f.write("1, title")
     f.close()
     repo = Repository("testRentalsRental", "test")
     movieRepo = Repository("testRentalsMovie", "tes2")
     mc = MovieController(movieRepo)
     clientRepo = Repository("testRentalsClients", "test3")
     cc = ClientController(clientRepo)
     controller = RentalController(repo, cc, mc)
     self.assertEqual(controller.returnAMovie("1"), True)
     self.assertRaises(ValueError, controller.removeAllAppOfMovie, '2s')
     self.assertRaises(ValueError, controller.removeAllAppOfClient, '2s')
     self.assertRaises(ValueError, controller.updateClientIdFromRental,
                       '2s', '2')
Example #11
0
class MovieTestCase(unittest.TestCase):
    def setUp(self):
        self.movie = Movie(3, 'Titanic4', 'supers', 'action')
        self.repo = Repository('testMovies', 'testMovies')
        self.controller = MovieController(self.repo)
        if self.controller.getMovieById(77) is not False:
            self.controller.removeMovie(77)
        if self.controller.getMovieById(772) is not False:
            self.controller.removeMovie(772)
        if self.controller.getMovieById(773) is not False:
            self.controller.removeMovie(773)
        if self.controller.getMovieById(23) is False:
            self.controller.addMovie("23", "title", "description", "action")
        if self.controller.getMovieById('233333') is not False:
            self.controller.removeMovie('233333')
        if self.controller.getMovieById(20) is False:
            self.controller.addMovie("20", "title", "description", "action")
        if self.controller.getMovieById(200) is False:
            self.controller.addMovie("200", "title", "description", "action")
        if self.controller.getMovieById(90) is False:
            self.controller.addMovie("90", "title", "description", "action")
        if self.controller.getMovieById(123) is False:
            self.controller.addMovie("123", "title", "description", "action")
        if self.controller.getMovieById(234) is False:
            self.controller.addMovie("234", "title", "description", "action")
        if self.controller.getMovieById(33) is False:
            self.controller.addMovie("33", "title", "description", "action")
        if self.controller.getMovieById(90) is not False:
            self.controller.removeMovie(99)
        if self.controller.getMovieById(323) is False:
            self.controller.addMovie("323", "title", "description", "action")
        if self.controller.getMovieById(929) is not False:
            self.controller.removeMovie(929)
        if self.controller.getMovieById(33) is False:
            self.controller.addMovie("333", "title", "description", "action")
        if self.controller.getMovieById(939) is not False:
            self.controller.removeMovie(939)

    def test_strMovie(self):
        self.movie.id = 3
        self.movie.genre = 'action'
        self.movie.title = 'Titanic4'
        self.movie.description = 'supers'
        m = Movie(3, 'sd', 'sds', 'action')
        self.assertNotEqual(m, self.movie)
        m = self.movie
        self.assertEqual(m, self.movie)
        self.assertEqual(str(self.movie), '3, Titanic4, supers, action')

    def test_AddMovie(self):
        self.assertEqual(
            self.controller.addMovie('772', 'nume', 'descriere', 'action'),
            True)

    def test_AddMovie2(self):
        self.controller.addMovie("10000", "sd", "sdf", "action")
        self.assertRaises(ValueError, self.controller.addMovie, "10000", "df",
                          "sdf", "action")
        self.controller.removeMovie("10000")

    def test_AddMovie3(self):
        self.assertEqual(
            self.controller.addMovie('773', 'nume', 'descriere', 'action'),
            True)

    def test_RemoveMovie(self):
        self.assertEqual(self.controller.removeMovie(20), True)

    def test_RemoveMovie2(self):
        self.assertRaises(ValueError, self.controller.removeMovie, "sdfgs")

    def test_UpdateMovie(self):
        self.assertEqual(
            self.controller.updateMovie('23', '233333', "teeest2",
                                        "sdfsdfssfs", "action"), True)

    def test_UpdateMovie2(self):
        self.assertRaises(ValueError, self.controller.updateMovie, '23d',
                          '233333', "teeest2", "sdfsdfssfs", "action")

    def test_UpdateMovie3(self):
        self.assertRaises(ValueError, self.controller.updateMovie, '23',
                          '2333dd33', "teeest2", "sdfsdfssfs", "action")

    def test_UpdateMovie4(self):
        self.controller.addItem(Movie(20000000000, "sds", "sdfs", "action"))
        self.assertRaises(ValueError, self.controller.updateMovie, '23',
                          '233333', "", "sdfsdfssfs", "action")
        self.controller.removeMovie(20000000000)

    def test_UpdateMovie5(self):
        self.controller.addItem(Movie(20000000000, "sds", "sdfs", "action"))
        # self.controller.addItem(Movie(200000000000,"sds","sdfs","action"))
        # self.assertRaises(ValueError, self.controller.updateMovie, '20000000000', '200000000000', "sds", "sdfsdfssfs", "action")
        # self.controller.removeMovie(20000000000),
        # self.controller.removeMovie(20000000000),
        # self.controller.addMovie("9987", "sd", "sd", "action")
        # self.controller.addMovie("9988", "sd", "sd", "action")
        # self.assertRaises(ValueError, self.controller.updateMovie,"9987", "9988", "d", "d", "action")
        # self.controller.removeMovie(9987)
        # self.controller.removeMovie(9988)

    def test_UpdateMovieName(self):
        self.assertEqual(
            self.controller.updateMovieName('90', 'nuuummmeee tesr'), True)

    def test_UpdateMovieName2(self):
        self.assertEqual(
            self.controller.updateMovieName('90', 'nuuummmeee test2'), True)

    def test_UpdateMovieName3(self):
        self.assertEqual(
            self.controller.updateMovieName('90', 'nuuummmeee test3'), True)

    def test_UpdateMovieDescription(self):
        self.assertEqual(
            self.controller.updateMovieDescription('123',
                                                   'test descriereeeee'), True)

    def test_UpdateMovieDescription2(self):
        self.assertEqual(
            self.controller.updateMovieDescription('123',
                                                   'test descriereeeee2'),
            True)

    def test_UpdateMovieDescription3(self):
        self.assertEqual(
            self.controller.updateMovieDescription('123',
                                                   'test descriereeeee33'),
            True)

    def test_UpdateMovieGenre(self):
        self.assertEqual(self.controller.updateMovieGenre("234", 'family'),
                         True)

    def test_UpdateMovieGenre2(self):
        self.assertRaises(ValueError, self.controller.updateMovieGenre,
                          "s2345", 'action')

    def test_UpdateMovieGenre3(self):
        self.assertRaises(ValueError, self.controller.updateMovieGenre, "234",
                          'comedys')

    def test_UpdateMovieId(self):
        self.assertEqual(self.controller.updateMovieId("33", '99'), True)

    def test_UpdateMovieId2(self):
        self.assertEqual(self.controller.updateMovieId("323", '929'), True)

    def test_UpdateMovieId3(self):
        self.assertEqual(self.controller.updateMovieId("333", '939'), None)

    def test_GetAllMovies(self):
        repo2 = Repository('movieUpdateTest', "test2")
        movie = Movie("2", "223", '22320', 'action')
        controller2 = MovieController(repo2)
        l = controller2.getAllMovies()
        self.assertEqual(controller2.getAllMovies(), [movie])

    def test_getMovieById(self):
        if self.controller.getMovieById('11111111') is False:
            self.controller.addMovie('11111111', 'sfsdfsf', 'sdfdsfsfdsfdsfs',
                                     'action')
        self.assertEqual(
            self.controller.getMovieById('11111111'),
            Movie('11111111', 'sfsdfsf', 'sdfdsfsfdsfdsfs', 'action'))

    def test_getMovieById2(self):
        if self.controller.getMovieById('111211111') is False:
            self.controller.addMovie('111211111', 'sfsdfsf', 'sdfdsfsfdsfdsfs',
                                     'action')
        self.assertRaises(ValueError, self.controller.getMovieById,
                          '111211111d')

    def test_ValidateMovie(self):
        self.assertRaises(ValueError, MovieValidator.validate, "", "", "", "")
        self.assertRaises(ValueError, MovieValidator.validate, "", ",", ",",
                          ",")

    def test_search(self):
        c = MovieController(Repository("testSearch", "d"))
        c.addItem(Movie(3, "action", "sdf", "family"))
        self.assertEqual(c.searchMovieByGenre("action"), [])
        c.removeMovie(3)
        self.assertEqual(c.searchMovieByTitle("d"), [])
        self.assertEqual(c.searchMovieByDescription("descriere"), [])
        self.assertRaises(ValueError, c.searchMovieByDescription, "")
        self.assertRaises(ValueError, c.searchMovieByGenre, "")
        self.assertRaises(ValueError, c.searchMovieByTitle, "")
Example #12
0
 def test_GetAllMovies(self):
     repo2 = Repository('movieUpdateTest', "test2")
     movie = Movie("2", "223", '22320', 'action')
     controller2 = MovieController(repo2)
     l = controller2.getAllMovies()
     self.assertEqual(controller2.getAllMovies(), [movie])