[LIB-10] Tests for Requesters
[snooker-score-api.git] / src / test / java / org / hedgecode / snooker / request / SeasonPlayersRequesterTest.java
1 /*
2  * Copyright (c) 2017-2020. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.snooker.request;
18
19 import org.hedgecode.snooker.api.PlayerCategory;
20 import org.hedgecode.snooker.api.Season;
21
22 import org.junit.Test;
23 import org.junit.runner.RunWith;
24 import org.junit.runners.JUnit4;
25
26 /**
27  * Tests for {@link SeasonPlayersRequester}.
28  *
29  * @author Dmitry Samoshin aka gotty
30  */
31 @RunWith(JUnit4.class)
32 public class SeasonPlayersRequesterTest extends AbstractRequesterTest {
33
34     @Test
35     public void testGetInstance() throws Exception {
36         assertNotNull(
37                 SeasonPlayersRequester.getInstance()
38         );
39     }
40
41     @Test
42     @Override
43     public void testIncorrectRequestById() throws Exception {
44         // do not supported
45     }
46
47     @Override
48     protected Requester getRequester() {
49         return SeasonPlayersRequester.getInstance();
50     }
51
52     @Override
53     protected RequestParams getCorrectRequestParams() {
54         return new RequestParams(Season.CURRENT_SEASON, PlayerCategory.PRO);
55     }
56
57     @Override
58     protected RequestParams getIncorrectRequestParams() {
59         return new RequestParams(RequestType.SEASON_PLAYERS, INCORRECT_ID, null);
60     }
61
62     @Override
63     protected String getCorrectRequestUrl() {
64         return String.format(
65                 "%s?t=10&st=%s&s=%d", REQUEST_URL, PlayerCategory.PRO.letter(), Season.CURRENT_YEAR
66         );
67     }
68
69 }