forked from SchizoDuckie/DuckieTV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFavoritesService.test.js
154 lines (121 loc) · 5.27 KB
/
FavoritesService.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/**
* Synchronous Fixture loader using Plain Old Javascript.
* Strips all non alphabet/numeric characters out of the HTTP request URL
* e.g.
* https://api.trakt.tv/shows/doctor-who-2005/seasons?extended=full,images
* becomes
* 'httpsapitrakttvshowsdoctorwho2005seasonsextendedfullimages.json'
* for
* (not perfect, but sufficient for me)
*
* The file format is a simple json structure:
* {
* url: 'string',
* headers: {
* //map
* },
* content: 'string'
* }
*
*
*/
describe('FavoritesService', function() {
var FavoritesService, TraktTVv2, $httpBackend, $q, $rootScope, $scope;
beforeEach(module('DuckieTV'));
beforeEach(inject(function($injector) {
// Set up the mock http service responses
$httpBackend = $injector.get('$httpBackend');
$httpBackend.whenGET(/.*/).respond(function(method, url, data) {
var response = fixture(url);
return [response ? 200 : 404, response];
});
}));
beforeEach(inject(function(_FavoritesService_, _TraktTVv2_, _$httpBackend_) {
FavoritesService = _FavoritesService_;
TraktTVv2 = _TraktTVv2_;
$httpBackend = _$httpBackend_;
}));
afterEach(inject(function($rootScope) {
$rootScope.$apply();
}));
describe('It should be initialized', function() {
it('should have a favorites property', function() {
expect(angular.isObject(FavoritesService.favorites)).toBe(true);
});
it('should list all series', function() {
FavoritesService.getSeries().then(function(result) {
expect(angular.isArray(result)).toBe(true);
});
});
//describe("It should be able to add Doctor Who to the database", function() {
// todo: move this to protractor test, test only the parsing of what goes into CRUD objects
// (e.g. one serie, one episode, one season) here
/*
it('Should be able to add Doctor Who from a parsed search result', function(done) {
var serie = null;
TraktTVv2.serie('doctor-who-2005').then(function(searchResults) {
return searchResults;
}).then(function(result) {
return FavoritesService.addFavorite(result);
}).then(function(serie) {
expect(serie).toEqual(true);
done();
});
$httpBackend.flush();
});
it('Shoud have finished adding it', function(done) {
var serie = null;
CRUD.FindOne('Serie', {
name: 'Doctor Who'
}).then(function(serie) {
expect(
serie.overview == "The Doctor is an alien Time Lord from the planet Gallifrey who travels through all of time and space in his TARDIS. His current travel companion is Clara Oswald, though he has a long list of friends and companions who have shared journeys with him. Instead of dying, the Doctor is able to “regenerate” into a new body, taking on a new personality with each regeneration. Twelve actors, plus John Hurt, have played The Doctor thus far." &&
serie.runtime == 50 &&
serie.network == 'BBC One' &&
serie.status == 'returning series' &&
serie.rating == 91 &&
serie.language == 'gb' &&
serie.fanart == 'https://walter.trakt.us/images/shows/000/056/872/fanarts/original/f5b14363ae.jpg?1420722413' &&
serie.poster == 'https://walter.trakt.us/images/shows/000/056/872/posters/thumb/8c421e339d.jpg?1420722412' &&
serie.banner == 'https://walter.trakt.us/images/shows/000/056/872/banners/original/eb6561d0ee.jpg?1420722414' &&
serie.TVDB_ID == 78804 &&
serie.TVRage_ID == 3332 &&
serie.IMDB_ID == 'tt0436992' &&
serie.contentrating == 'TV-PG' &&
serie.name == 'Doctor Who' &&
/* serie.firstaired == NaN &&
serie.ratingcount == 10176 &&
serie.genre == 'action|adventure|drama|science-fiction' &&
serie.ID_Serie == 1
).toBe(true);
done();
});
});
it("Should have added 10 seasons", function(done) {
CRUD.FindOne('Season', {
Serie: {
title: 'Doctor Who'
}
}).then(function(result) {
expect(result.length).toEqual(10);
done();
});
});
it('should have added xx episodes', function() {
expect(false).toBe(true); // placeholder
});
it('should have added a timer', function() {
expect(false).toBe(true); // placeholder
});
it('should have added a ScheduledEvent', function() {
expect(false).toBe(true); // placeholder
});
it('on new series it should have triggered a refresh of the library', function() {
expect(false).toBe(true); // placeholder
});
it('should execute 0 insert/update queries when adding the same show twice', function() {
expect(false).toBe(true); // placeholder
});
*/
});
});