-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Snow Leopards- Ja Hopkins #153
base: master
Are you sure you want to change the base?
Changes from 8 commits
54cc945
82d1f18
35bbe89
cd13032
aba741b
9bbee29
03ee31c
b96d781
8ac67e6
dee698f
714724e
18a56f1
3ae983f
fa912bc
c2f0102
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] | ||
Comment on lines
+152
to
+153
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These two checks are more or less doing the same thing. Consider using three |
||
# ******************************************************************************************* | ||
# ****** 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 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👀 It looks like you missed uncommenting the skip on the test on line 18. When I did so, the test passed. 👍 |
||
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 = { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,110 @@ | ||
# ------------- 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: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice truthy checks. But consider reversing the sense of the comparison so that the more error-like condition is handled within the conditional check, and the main logic (making the dictionary) doesn't need to be nested. Structuring the checks to look for the more error-like conditions is a pattern referred to as a guard clause, and it's a common way of organizing our code. if not title or not genre or not rating:
# code to run when one of the inputs is falsy
# code to run when all inputs are truthy |
||
title_genre_rating.update({'title': title, 'genre': genre, 'rating': rating}) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Notice that the argument to title_genre_rating = {'title': title, 'genre': genre, 'rating': rating} |
||
return(title_genre_rating) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
return ("this" + "is" + "a" + "long" + "expression"
+ "that" + "I" + "want" + "to" + "wrap") |
||
return None | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Taking all that feedback, we might end up with a function like this: if not title or not genre or not rating:
return None
return {'title': title, 'genre': genre, 'rating': rating} |
||
|
||
def add_to_watched(user_data, movie): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
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): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
# 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) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As above, no need for the parens on the return here (or throughout the rest of the functions). |
||
|
||
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(): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This could potentially find the if title == movie["title"]: |
||
user_data["watchlist"].remove(movie) | ||
user_data["watched"].append(movie) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider Also, a blank line after this would help visually separate the |
||
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: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice handling for the case of an empty list. A slightly more pythonic way to check for whether a list is empty is if not some_list_var:
# code to handle empty list So here, if not user_data["watched"]: |
||
average_rating = 0.0 | ||
return average_rating | ||
else: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the |
||
for movie in user_data["watched"]: | ||
user_rating.append(movie["rating"]) | ||
Comment on lines
+55
to
+56
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We haven't talked about list comprehensions in python, but there's a special syntax that lets us effectively append a set of values very concisely. The following would initialize user_rating = [movie["rating"] for movie in user_data["watched"]] The general pattern lets us take some code like new_list = []
for item in old_list:
if should_process(item):
new_list.append(process(item)) and write it like: new_list = [process(item) for item in old_list if should_process(item)] |
||
average_rating = (sum(user_rating)) / (len(user_rating)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Notice that since this is indented under the loop, we're recalculating the average each time through the loop. We only need to do this once (after the loop), after we've added all of the ratings to the list in the loop. |
||
# print(user_rating) | ||
# print(average_rating) | ||
return(average_rating) | ||
|
||
def get_most_watched_genre(user_data): | ||
|
||
genres_watched = {} | ||
|
||
if not user_data["watched"]: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 Nice and Pythonic! |
||
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: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A key is either in a dict or it's not. So we can use a |
||
genres_watched[movie["genre"]] += 1 | ||
|
||
num_of_genres_watched = genres_watched.values() | ||
max_num_genres_watched = max(num_of_genres_watched) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice use of We'll see that there's really not a performance difference, though, and arguably this code is a little simpler. (but writing a max finder ourself is great practice!). |
||
|
||
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 = [] | ||
for watched_movie in user_data["watched"]: | ||
# friends_movies.append(watched_movie) | ||
for movie in user_data["friends"]: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A more accurate name for what this variable represents is |
||
# for movie in user_data["friends"]: | ||
if watched_movie["title"] in unique_movies: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The function is supposed to be building up a list of movies not their titles, so I would expect |
||
continue | ||
elif watched_movie["title"] not in movie["watched"]: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From above, So to determine whether a the elif watched_movie not in friend["watched"]: |
||
unique_movies.append(watched_movie["title"]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Even if we make the above change, we can't be certain that What we could do is use a boolean value to see whether we've seen the movie in any of the friend's lists (initialized to False, since we wouldn't have found the movie yet). If we find the movie, set the flag to True. If we get through all the friends and haven't found the movie, then we can add it to the result list. Try adding this additional logic yourself. I have one possible way of doing this in the next comment. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. unique_movies = []
for watched_movie in user_data["watched"]:
found_movie = False
for friend in user_data["friends"]:
if watched_movie in unique_movies:
found_movie = True
elif watched_movie in friend["watched"]:
found_movie = True
if not found_movie:
unique_movies.append(watched_movie)
return unique_movies |
||
return unique_movies | ||
|
||
|
||
# ----------------------------------------- | ||
# ------------- WAVE 4 -------------------- | ||
# ----------------------------------------- | ||
|
||
# ----------------------------------------- | ||
# ------------- WAVE 5 -------------------- | ||
# ----------------------------------------- | ||
|
||
# ----------------------------------------- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍