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 org.hamcrest.MatcherAssert;
33  import org.hamcrest.Matchers;
34  import org.junit.BeforeClass;
35  import org.junit.Test;
36  
37  /**
38   * Test case for {@link RtPublicMembers}.
39   * @author Chris Rebert (github@rebertia.com)
40   * @version $Id: 0f7a2aa7b33026b572a03da7131be81c3718b28b $
41   */
42  public final class RtPublicMembersITCase {
43      /**
44       * Test organization name.
45       */
46      private static final String ORG_NAME = "teamed";
47  
48      /**
49       * Test organization.
50       */
51      private static Organization org;
52  
53      /**
54       * Public member of the test organization.
55       */
56      private static User member;
57  
58      /**
59       * Non-member of the test organization.
60       */
61      private static User nonMember;
62  
63      /**
64       * Set up test fixtures.
65       */
66      @BeforeClass
67      public static void setUp() {
68          final Github github = new GithubIT().connect();
69          final Users users = github.users();
70          org = github.organizations().get(ORG_NAME);
71          member = users.get("yegor256");
72          nonMember = users.get("charset");
73      }
74  
75      /**
76       * RtPublicMembers can check whether a user is a public member
77       * of an organization.
78       * @throws Exception If something goes wrong
79       */
80      @Test
81      public void checksPublicMembership() throws Exception {
82          MatcherAssert.assertThat(
83              "Check true positive of public membership in an organization",
84              org.publicMembers().contains(member)
85          );
86          MatcherAssert.assertThat(
87              "Check true negative of public membership in an organization",
88              !org.publicMembers().contains(nonMember)
89          );
90      }
91  
92      /**
93       * RtPublicMembers can list the public members of an organization.
94       */
95      @Test
96      public void listsPublicMembers() {
97          MatcherAssert.assertThat(
98              org.publicMembers().iterate(),
99              Matchers.<User>iterableWithSize(Matchers.greaterThanOrEqualTo(1))
100         );
101         MatcherAssert.assertThat(
102             org.publicMembers().iterate(),
103             Matchers.hasItem(member)
104         );
105         MatcherAssert.assertThat(
106             org.publicMembers().iterate(),
107             Matchers.not(Matchers.hasItem(nonMember))
108         );
109     }
110 }