[LIB-10] Tests for Requesters
[snooker-score-api.git] / src / test / java / org / hedgecode / snooker / request / RankingRequesterTest.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.RankingType;
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 RankingRequester}.
28  *
29  * @author Dmitry Samoshin aka gotty
30  */
31 @RunWith(JUnit4.class)
32 public class RankingRequesterTest extends AbstractRequesterTest {
33
34     @Test
35     public void testGetInstance() throws Exception {
36         assertNotNull(
37                 RankingRequester.getInstance()
38         );
39     }
40
41     @Test
42     @Override
43     public void testCorrectRequestById() throws Exception {
44         // do not supported
45     }
46
47     @Override
48     protected Requester getRequester() {
49         return RankingRequester.getInstance();
50     }
51
52     @Override
53     protected RequestParams getCorrectRequestParams() {
54         return new RequestParams(Season.CURRENT_SEASON, RankingType.MoneyRankings);
55     }
56
57     @Override
58     protected RequestParams getIncorrectRequestParams() {
59         return new RequestParams(RequestType.RANKING, INCORRECT_ID, null);
60     }
61
62     @Override
63     protected String getCorrectRequestUrl() {
64         return String.format("%s?rt=%s&s=%d", REQUEST_URL, RankingType.MoneyRankings, Season.CURRENT_YEAR);
65     }
66
67 }