diff --git a/play_tester.py b/play_tester.py index 9e2aecf48..ca9614de1 100644 --- a/play_tester.py +++ b/play_tester.py @@ -9,16 +9,16 @@ pp = pprint.PrettyPrinter(indent=4) # play testing section -print("\n-----Wave 01 test data-----") -pp.pprint(HORROR_1) -pp.pprint(FANTASY_1) -pp.pprint(FANTASY_2) +# print("\n-----Wave 01 test data-----") +# pp.pprint(HORROR_1) +# pp.pprint(FANTASY_1) +# pp.pprint(FANTASY_2) # print("\n-----Wave 02 user_data-----") # pp.pprint(clean_wave_2_data()) -#print("\n-----Wave 03 user_data-----") -#pp.pprint(clean_wave_3_data()) +# print("\n-----Wave 03 user_data-----") +# pp.pprint(clean_wave_3_data()) # Wave 04 user data #print("\n-----Wave 04 user_data-----") diff --git a/tests/test_wave_01.py b/tests/test_wave_01.py index 6be6994a5..f6b2dc716 100644 --- a/tests/test_wave_01.py +++ b/tests/test_wave_01.py @@ -4,7 +4,7 @@ from viewing_party.party import * from tests.test_constants import * -@pytest.mark.skip() +# @pytest.mark.skip() def test_create_successful_movie(): # Arrange movie_title = MOVIE_TITLE_1 @@ -19,7 +19,7 @@ def test_create_successful_movie(): assert new_movie["genre"] == GENRE_1 assert new_movie["rating"] == pytest.approx(RATING_1) -@pytest.mark.skip() +# @pytest.mark.skip() def test_create_no_title_movie(): # Arrange movie_title = None @@ -32,7 +32,7 @@ def test_create_no_title_movie(): # Assert assert new_movie is None -@pytest.mark.skip() +# @pytest.mark.skip() def test_create_no_genre_movie(): # Arrange movie_title = "Title A" @@ -45,7 +45,7 @@ def test_create_no_genre_movie(): # Assert assert new_movie is None -@pytest.mark.skip() +# @pytest.mark.skip() def test_create_no_rating_movie(): # Arrange movie_title = "Title A" @@ -58,7 +58,7 @@ def test_create_no_rating_movie(): # Assert assert new_movie is None -@pytest.mark.skip() +# @pytest.mark.skip() def test_adds_movie_to_user_watched(): # Arrange movie = { @@ -79,7 +79,7 @@ def test_adds_movie_to_user_watched(): assert updated_data["watched"][0]["genre"] == GENRE_1 assert updated_data["watched"][0]["rating"] == RATING_1 -@pytest.mark.skip() +# @pytest.mark.skip() def test_adds_movie_to_user_watchlist(): # Arrange movie = { @@ -100,7 +100,7 @@ def test_adds_movie_to_user_watchlist(): assert updated_data["watchlist"][0]["genre"] == GENRE_1 assert updated_data["watchlist"][0]["rating"] == RATING_1 -@pytest.mark.skip() +# @pytest.mark.skip() def test_moves_movie_from_watchlist_to_empty_watched(): # Arrange janes_data = { @@ -119,12 +119,16 @@ def test_moves_movie_from_watchlist_to_empty_watched(): assert len(updated_data["watchlist"]) == 0 assert len(updated_data["watched"]) == 1 - raise Exception("Test needs to be completed.") + # raise Exception("Test needs to be completed.") + + assert updated_data["watched"][0]["title"] == MOVIE_TITLE_1 + assert updated_data["watched"][0]["genre"] == GENRE_1 + assert updated_data["watched"][0]["rating"] == RATING_1 # ******************************************************************************************* # ****** Add assertions here to test that the correct movie was added to "watched" ********** # ******************************************************************************************* -@pytest.mark.skip() +# @pytest.mark.skip() def test_moves_movie_from_watchlist_to_watched(): # Arrange movie_to_watch = HORROR_1 @@ -143,12 +147,15 @@ def test_moves_movie_from_watchlist_to_watched(): assert len(updated_data["watchlist"]) == 1 assert len(updated_data["watched"]) == 2 - raise Exception("Test needs to be completed.") + # raise Exception("Test needs to be completed.") + + assert updated_data["watched"][1] == movie_to_watch + assert movie_to_watch in updated_data["watched"] # ******************************************************************************************* # ****** Add assertions here to test that the correct movie was added to "watched" ********** # ******************************************************************************************* -@pytest.mark.skip() +# @pytest.mark.skip() def test_does_nothing_if_movie_not_in_watchlist(): # Arrange movie_to_watch = HORROR_1 diff --git a/tests/test_wave_02.py b/tests/test_wave_02.py index 3a588299e..7338978b4 100644 --- a/tests/test_wave_02.py +++ b/tests/test_wave_02.py @@ -2,7 +2,7 @@ from viewing_party.party import * from tests.test_constants import * -@pytest.mark.skip() +# @pytest.mark.skip() def test_calculates_watched_average_rating(): # Arrange janes_data = clean_wave_2_data() @@ -27,7 +27,7 @@ def test_empty_watched_average_rating_is_zero(): # Assert assert average == pytest.approx(0.0) -@pytest.mark.skip() +# @pytest.mark.skip() def test_most_watched_genre(): # Arrange janes_data = clean_wave_2_data() @@ -39,7 +39,7 @@ def test_most_watched_genre(): assert popular_genre == "Fantasy" assert janes_data == clean_wave_2_data() -@pytest.mark.skip() +# @pytest.mark.skip() def test_genre_is_None_if_empty_watched(): # Arrange janes_data = { diff --git a/tests/test_wave_03.py b/tests/test_wave_03.py index 046429360..16079d240 100644 --- a/tests/test_wave_03.py +++ b/tests/test_wave_03.py @@ -2,7 +2,7 @@ from viewing_party.party import * from tests.test_constants import * -@pytest.mark.skip() +# @pytest.mark.skip() def test_my_unique_movies(): # Arrange amandas_data = clean_wave_3_data() @@ -16,7 +16,7 @@ def test_my_unique_movies(): assert INTRIGUE_2 in amandas_unique_movies assert amandas_data == clean_wave_3_data() -@pytest.mark.skip() +# @pytest.mark.skip() def test_my_not_unique_movies(): # Arrange amandas_data = clean_wave_3_data() @@ -28,7 +28,7 @@ def test_my_not_unique_movies(): # Assert assert len(amandas_unique_movies) == 0 -@pytest.mark.skip() +# @pytest.mark.skip() def test_friends_unique_movies(): # Arrange amandas_data = clean_wave_3_data() @@ -43,7 +43,7 @@ def test_friends_unique_movies(): assert FANTASY_4 in friends_unique_movies assert amandas_data == clean_wave_3_data() -@pytest.mark.skip() +# @pytest.mark.skip() def test_friends_unique_movies_not_duplicated(): # Arrange amandas_data = clean_wave_3_data() @@ -55,12 +55,16 @@ def test_friends_unique_movies_not_duplicated(): # Assert assert len(friends_unique_movies) == 3 - raise Exception("Test needs to be completed.") + # raise Exception("Test needs to be completed.") + + assert friends_unique_movies[-2] == HORROR_1 + assert friends_unique_movies[0] == FANTASY_4 + # this assert makes sures that the second to last item is not INTRIGUE_3 which would mean it was duplicated # ************************************************************************************************* # ****** Add assertions here to test that the correct movies are in friends_unique_movies ********** # ************************************************************************************************** -@pytest.mark.skip() +# @pytest.mark.skip() def test_friends_not_unique_movies(): # Arrange amandas_data = { diff --git a/tests/test_wave_04.py b/tests/test_wave_04.py index 499669077..0b0b3c7e2 100644 --- a/tests/test_wave_04.py +++ b/tests/test_wave_04.py @@ -2,7 +2,7 @@ from viewing_party.party import * from tests.test_constants import * -@pytest.mark.skip() +# @pytest.mark.skip() def test_get_available_friend_rec(): # Arrange amandas_data = clean_wave_4_data() @@ -16,7 +16,7 @@ def test_get_available_friend_rec(): assert FANTASY_4b in recommendations assert amandas_data == clean_wave_4_data() -@pytest.mark.skip() +# @pytest.mark.skip() def test_no_available_friend_recs(): # Arrange amandas_data = { @@ -38,7 +38,7 @@ def test_no_available_friend_recs(): # Assert assert len(recommendations) == 0 -@pytest.mark.skip() +# @pytest.mark.skip() def test_no_available_friend_recs_watched_all(): # Arrange amandas_data = { diff --git a/viewing_party/party.py b/viewing_party/party.py index 6d34a6b5f..b9fbc6def 100644 --- a/viewing_party/party.py +++ b/viewing_party/party.py @@ -1,23 +1,141 @@ # ------------- WAVE 1 -------------------- + def create_movie(title, genre, rating): - pass + # if truthy return a dictionary + # dictionary contains 3 key-value pairs + # return none if falsy + title_genre_rating = {} + if title and genre and rating: + title_genre_rating.update({'title': title, 'genre': genre, 'rating': rating}) + return(title_genre_rating) + return None + +def add_to_watched(user_data, movie): + user_data["watched"].append(movie) + return user_data + + # user_data = {watched: [{movie}{moveie}]} + # add each movie to the watched key + +def add_to_watchlist(user_data, movie): + # user_data = {watchlist: [{movies}{user}]{wants}{to_watch}} + # add movie into the watchlist inside of user data + # return user_data + user_data["watchlist"].append(movie) + return(user_data) + +def watch_movie(user_data, title): +# user_data = {watchlist: watched:} +# if title is in watch_list then add to watched: +# return user_data +# if not in watch list: +# return user_data + + for movie in user_data["watchlist"]: + if title in movie.values(): + user_data["watchlist"].remove(movie) + user_data["watched"].append(movie) + return(user_data) + + # ----------------------------------------- # ------------- WAVE 2 -------------------- # ----------------------------------------- +def get_watched_avg_rating(user_data): +# user data = {watched: [{movie2}, {movie2}]} + user_rating = [] + + if len(user_data["watched"]) == 0: + average_rating = 0.0 + return average_rating + else: + for movie in user_data["watched"]: + user_rating.append(movie["rating"]) + average_rating = (sum(user_rating)) / (len(user_rating)) + # print(user_rating) + # print(average_rating) + return(average_rating) + +def get_most_watched_genre(user_data): + + genres_watched = {} + + if not user_data["watched"]: + return None + + for movie in user_data["watched"]: + if movie["genre"] not in genres_watched: + genres_watched[movie["genre"]] = 1 + elif movie["genre"] in genres_watched: + genres_watched[movie["genre"]] += 1 + + num_of_genres_watched = genres_watched.values() + max_num_genres_watched = max(num_of_genres_watched) + + for genre, times_watched in genres_watched.items(): + if times_watched == max_num_genres_watched: + return genre + + # ----------------------------------------- # ------------- WAVE 3 -------------------- # ----------------------------------------- +def get_unique_watched(user_data): + # user_data = {watched :[{"title: title"}, {"title": title}], friends: [{watched_key:[{"title:title"}{title:title}]}{watched_key:[{title:title}{title:title}]}]} + # each movie dict in watched_key has a title + + unique_movies = [] + movies_watched_by_friends = [] + + for friend in user_data["friends"]: + for movie_details in friend["watched"]: + movie_title = movie_details["title"] + movies_watched_by_friends.append(movie_title) + # print(movie_details["title"]) + for movie in user_data["watched"]: + movie_watched = movie["title"] + if movie_watched not in movies_watched_by_friends: + unique_movies.append(movie) + # watched_titles.append(movie["title"]) + return(unique_movies) + +def get_friends_unique_watched(user_data): + all_movies_watched = [] + unique_movies_watched_by_friends = [] + + for movie in user_data["watched"]: + movie_watched = movie["title"] + # add all the movies watched to new list + all_movies_watched.append(movie_watched) + for friend in user_data["friends"]: + for movie_details in friend["watched"]: + movie_title = movie_details["title"] + if (movie_title not in all_movies_watched and + movie_details not in unique_movies_watched_by_friends): + # check if details are unqie friends list to avoid duplicates + # create list of dictionary containing movie details + unique_movies_watched_by_friends.append(movie_details) + return unique_movies_watched_by_friends + + # ----------------------------------------- # ------------- WAVE 4 -------------------- # ----------------------------------------- +def get_available_recs(user_data): + recommended_movies = [] + friends_watched = get_friends_unique_watched(user_data) + for movie in friends_watched: + if movie["host"] in user_data["subscriptions"]: + recommended_movies.append(movie) + return recommended_movies + # ----------------------------------------- # ------------- WAVE 5 -------------------- # ----------------------------------------- -