View Javadoc
1   /**
2    * Copyright (c) 2013-2023, jcabi.com
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met: 1) Redistributions of source code must retain the above
8    * copyright notice, this list of conditions and the following
9    * disclaimer. 2) Redistributions in binary form must reproduce the above
10   * copyright notice, this list of conditions and the following
11   * disclaimer in the documentation and/or other materials provided
12   * with the distribution. 3) Neither the name of the jcabi.com nor
13   * the names of its contributors may be used to endorse or promote
14   * products derived from this software without specific prior written
15   * permission.
16   *
17   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18   * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
19   * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20   * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
21   * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22   * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23   * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24   * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28   * OF THE POSSIBILITY OF SUCH DAMAGE.
29   */
30  package com.jcabi.github;
31  
32  import com.jcabi.http.mock.MkAnswer;
33  import com.jcabi.http.mock.MkContainer;
34  import com.jcabi.http.mock.MkGrizzlyContainer;
35  import com.jcabi.http.request.ApacheRequest;
36  import com.jcabi.http.request.FakeRequest;
37  import java.net.HttpURLConnection;
38  import org.hamcrest.MatcherAssert;
39  import org.hamcrest.Matchers;
40  import org.junit.Rule;
41  import org.junit.Test;
42  import org.mockito.Mockito;
43  
44  /**
45   * Test case for {@link RtEvent}.
46   *
47   * @author Carlos Miranda (miranda.cma@gmail.com)
48   * @version $Id: 0a6a86367753ad1ac65796bcafbf968b9921fd47 $
49   * @checkstyle MultipleStringLiteralsCheck (100 lines)
50   */
51  public final class RtEventTest {
52  
53      /**
54       * The rule for skipping test if there's BindException.
55       * @checkstyle VisibilityModifierCheck (3 lines)
56       */
57      @Rule
58      public final transient RandomPort resource = new RandomPort();
59  
60      /**
61       * RtEvent can retrieve its own repo.
62       *
63       */
64      @Test
65      public void canRetrieveOwnRepo() {
66          final Repo repo = this.repo();
67          final RtEvent event = new RtEvent(new FakeRequest(), repo, 1);
68          MatcherAssert.assertThat(
69              event.repo(),
70              Matchers.sameInstance(repo)
71          );
72      }
73  
74      /**
75       * RtEvent can retrieve its own number.
76       *
77       */
78      @Test
79      public void canRetrieveOwnNumber() {
80          final Repo repo = this.repo();
81          final RtEvent event = new RtEvent(new FakeRequest(), repo, 2);
82          MatcherAssert.assertThat(
83              event.number(),
84              Matchers.equalTo(2)
85          );
86      }
87  
88      /**
89       * RtEvent can be retrieved in JSON form.
90       *
91       * @throws Exception If a problem occurs.
92       */
93      @Test
94      public void retrieveEventAsJson() throws Exception {
95          try (final MkContainer container = new MkGrizzlyContainer().next(
96              new MkAnswer.Simple(
97                  HttpURLConnection.HTTP_OK,
98                  "{\"test\":\"events\"}"
99              )
100         ).start(this.resource.port())) {
101             final RtEvent event = new RtEvent(
102                 new ApacheRequest(container.home()),
103                 this.repo(),
104                 3
105             );
106             MatcherAssert.assertThat(
107                 event.json().getString("test"),
108                 Matchers.equalTo("events")
109             );
110         }
111     }
112 
113     /**
114      * RtEvent should be able to compare different instances.
115      *
116      */
117     @Test
118     public void canCompareInstances() {
119         final RtEvent less = new RtEvent(new FakeRequest(), this.repo(), 1);
120         final RtEvent greater = new RtEvent(new FakeRequest(), this.repo(), 2);
121         MatcherAssert.assertThat(
122             less.compareTo(greater), Matchers.lessThan(0)
123         );
124         MatcherAssert.assertThat(
125             greater.compareTo(less), Matchers.greaterThan(0)
126         );
127     }
128 
129     /**
130      * Create and return repo for testing.
131      * @return Repo
132      */
133     private Repo repo() {
134         final Repo repo = Mockito.mock(Repo.class);
135         Mockito.doReturn(new Coordinates.Simple("test", "event"))
136             .when(repo).coordinates();
137         return repo;
138     }
139 
140 }