Skip to content

Commit 88c6594

Browse files
committed
Added: Tests : Shows API
1 parent 9c0e453 commit 88c6594

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
package getRequests;
2+
3+
import Client.SpotifyClient;
4+
import Client.SpotifyLogin;
5+
import org.junit.jupiter.api.Test;
6+
7+
import java.io.IOException;
8+
9+
import static org.junit.jupiter.api.Assertions.assertNotNull;
10+
11+
public class ShowsTest {
12+
13+
static SpotifyClient client;
14+
15+
static {
16+
try {
17+
client = new SpotifyClient("d56c8c3f79a1459bba2c286cfa7aa15b", "9dcd475a773d467990dd75eede0af55f");
18+
19+
SpotifyLogin login = client.getLogin();
20+
login.setEmailOrUsername("exampleEmail");
21+
login.setPassword("examplePasword");
22+
login.setRedirectUri("exampleRedirectURI");
23+
login.addScope("user-modify-playback-state");
24+
client.requestAuthCodeFlowCode(client);
25+
client.generateAccessTokenAndRefreshToken(client);
26+
27+
28+
} catch (IOException | InterruptedException e) {
29+
e.printStackTrace();
30+
}
31+
}
32+
33+
@Test
34+
void testGetMultipleShows() throws IOException {
35+
36+
assertNotNull(client.getMultipleShows(client));
37+
38+
}
39+
40+
@Test
41+
void testGetSpecificShow() throws IOException{
42+
43+
assertNotNull(client.getSpecificShow(client));
44+
45+
}
46+
47+
@Test
48+
void testGetShowsEpisodes() throws IOException{
49+
50+
assertNotNull(client.getShowsEpisodes(client));
51+
52+
}
53+
54+
55+
56+
}

0 commit comments

Comments
 (0)