[grilo-plugins] tests: Test replacing TV show names
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [grilo-plugins] tests: Test replacing TV show names
- Date: Wed, 9 Dec 2015 11:05:05 +0000 (UTC)
commit f29a27d9d7a03478dcf9151ea9fddd3628debf97
Author: Bastien Nocera <hadess hadess net>
Date: Wed Dec 2 17:10:57 2015 +0100
tests: Test replacing TV show names
When using a casefolded TV show, check that the show got replaced
by the show name it would get from TheTVDB.
https://bugzilla.gnome.org/show_bug.cgi?id=758959
tests/thetvdb/data/config.ini | 10 ++++----
tests/thetvdb/test_thetvdb_resolve_shows.c | 33 ++++++++++++++++++++-------
2 files changed, 29 insertions(+), 14 deletions(-)
---
diff --git a/tests/thetvdb/data/config.ini b/tests/thetvdb/data/config.ini
index a1dd29b..b1845e0 100644
--- a/tests/thetvdb/data/config.ini
+++ b/tests/thetvdb/data/config.ini
@@ -2,31 +2,31 @@
version=1
# Boardwalk Empire
-[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=Boardwalk Empire]
+[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=boardwalk empire]
data = boardwalk_empire_get_series.txt
[https://thetvdb.com/api/THETVDB_TEST_MOCK_API_KEY/series/84947/all/en.zip]
data = boardwalk_empire_series_all_en.zip
# Adventure Time
-[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=Adventure Time]
+[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=adventure time]
data = adventure_time_get_series.txt
[https://thetvdb.com/api/THETVDB_TEST_MOCK_API_KEY/series/152831/all/en.zip]
data = adventure_time_series_all_en.zip
# Felicity
-[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=Felicity]
+[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=felicity]
data = felicity_get_series.txt
[https://thetvdb.com/api/THETVDB_TEST_MOCK_API_KEY/series/73980/all/en.zip]
data = felicity_series_all_en.zip
# House
-[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=House]
+[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=house]
data = house_get_series.txt
[https://thetvdb.com/api/THETVDB_TEST_MOCK_API_KEY/series/73255/all/en.zip]
data = house_series_all_en.zip
# Naruto
-[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=Naruto]
+[https://thetvdb.com/api/GetSeries.php?language=all&seriesname=naruto]
data = naruto_get_series.txt
[https://thetvdb.com/api/THETVDB_TEST_MOCK_API_KEY/series/78857/all/en.zip]
data = naruto_series_all_en.zip
diff --git a/tests/thetvdb/test_thetvdb_resolve_shows.c b/tests/thetvdb/test_thetvdb_resolve_shows.c
index 9692c8c..9921da6 100644
--- a/tests/thetvdb/test_thetvdb_resolve_shows.c
+++ b/tests/thetvdb/test_thetvdb_resolve_shows.c
@@ -27,7 +27,7 @@
static gboolean
get_show_metadata (GrlSource *source,
GrlResolutionFlags resolution,
- const gchar *show,
+ gchar **show,
gchar **imdb,
gchar **tvdb_id,
gchar **zap2it,
@@ -61,9 +61,11 @@ get_show_metadata (GrlSource *source,
g_assert_cmpint (poster_key, !=, GRL_METADATA_KEY_INVALID);
video = GRL_MEDIA_VIDEO (grl_media_video_new ());
- grl_media_video_set_show (video, show);
+ grl_media_video_set_show (video, *show);
+ g_free (*show);
- keys = grl_metadata_key_list_new (GRL_METADATA_KEY_PUBLICATION_DATE,
+ keys = grl_metadata_key_list_new (GRL_METADATA_KEY_SHOW,
+ GRL_METADATA_KEY_PUBLICATION_DATE,
tvdb_key,
imdb_key,
zap2it_key,
@@ -80,6 +82,9 @@ get_show_metadata (GrlSource *source,
keys,
options,
NULL);
+
+ *show = g_strdup (grl_media_video_get_show (video));
+
if (tvdb_id) {
*tvdb_id = g_strdup (grl_data_get_string (GRL_DATA (video), tvdb_key));
if (*tvdb_id == NULL) {
@@ -154,17 +159,21 @@ test_shows (GrlResolutionFlags resolution,
g_assert (source);
for (i = 0; i < G_N_ELEMENTS (videos); i++) {
- gchar *imdb, *tvdb_id, *zap2it, *pdate, *banner, *fanart, *poster;
+ gchar *show, *imdb, *tvdb_id, *zap2it, *pdate, *banner, *fanart, *poster;
gboolean success;
- success = get_show_metadata (source, resolution, videos[i].show,
+ show = g_utf8_casefold (videos[i].show, -1);
+ success = get_show_metadata (source, resolution, &show,
&imdb, &tvdb_id, &zap2it, &pdate,
&banner, &fanart, &poster);
+
if (should_fail) {
g_assert_false (success);
continue;
}
+ g_assert_cmpstr (videos[i].show, ==, show);
+ g_free (show);
g_assert_cmpstr (videos[i].tvdb_id, ==, tvdb_id);
g_free (tvdb_id);
g_assert_cmpstr (videos[i].imdb, ==, imdb);
@@ -222,28 +231,34 @@ test_shows_fuzzy_name (void)
/* First we search and populate the db using the fuzzy name and then we do
* a cache-only request with both, correct and fuzzy name */
for (i = 0; i < G_N_ELEMENTS (videos); i++) {
- gchar *imdb, *tvdb_id;
+ gchar *imdb, *tvdb_id, *show;
- get_show_metadata (source, GRL_RESOLVE_NORMAL, videos[i].fuzzy_name, &imdb, &tvdb_id,
+ show = g_strdup (videos[i].fuzzy_name);
+ get_show_metadata (source, GRL_RESOLVE_NORMAL, &show, &imdb, &tvdb_id,
NULL, NULL, NULL, NULL, NULL);
g_assert_cmpstr (videos[i].tvdb_id, ==, tvdb_id);
g_free (tvdb_id);
g_assert_cmpstr (videos[i].imdb, ==, imdb);
g_free (imdb);
+ g_free (show);
- get_show_metadata (source, GRL_RESOLVE_FAST_ONLY, videos[i].name_in_tvdb, &imdb, &tvdb_id,
+ show = g_strdup (videos[i].name_in_tvdb);
+ get_show_metadata (source, GRL_RESOLVE_FAST_ONLY, &show, &imdb, &tvdb_id,
NULL, NULL, NULL, NULL, NULL);
g_assert_cmpstr (videos[i].tvdb_id, ==, tvdb_id);
g_free (tvdb_id);
g_assert_cmpstr (videos[i].imdb, ==, imdb);
g_free (imdb);
+ g_free (show);
- get_show_metadata (source, GRL_RESOLVE_FAST_ONLY, videos[i].fuzzy_name, &imdb, &tvdb_id,
+ show = g_strdup (videos[i].fuzzy_name);
+ get_show_metadata (source, GRL_RESOLVE_FAST_ONLY, &show, &imdb, &tvdb_id,
NULL, NULL, NULL, NULL, NULL);
g_assert_cmpstr (videos[i].tvdb_id, ==, tvdb_id);
g_free (tvdb_id);
g_assert_cmpstr (videos[i].imdb, ==, imdb);
g_free (imdb);
+ g_free (show);
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]