|
| 1 | +/* |
| 2 | + * Copyright (c) 2009-2024 Yegor Bugayenko |
| 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 rultor.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.rultor.agents.github; |
| 31 | + |
| 32 | +import org.hamcrest.MatcherAssert; |
| 33 | +import org.hamcrest.Matchers; |
| 34 | +import org.junit.jupiter.api.Assertions; |
| 35 | +import org.junit.jupiter.api.Test; |
| 36 | + |
| 37 | +/** |
| 38 | + * Tests for ${@link IssueUrl}. |
| 39 | + * |
| 40 | + * @since 2.0 |
| 41 | + */ |
| 42 | +final class IssueUrlTest { |
| 43 | + @Test |
| 44 | + void pullRequestUrlShouldBeValid() { |
| 45 | + final IssueUrl issue = |
| 46 | + new IssueUrl("https://api.github.com/repos/USER/REPO/pull/5086"); |
| 47 | + MatcherAssert.assertThat( |
| 48 | + issue.valid(), |
| 49 | + Matchers.is(true) |
| 50 | + ); |
| 51 | + } |
| 52 | + |
| 53 | + @Test |
| 54 | + void pullRequestReviewUrlShouldBeValid() { |
| 55 | + final IssueUrl issue = new IssueUrl( |
| 56 | + "https://api.github.com/repos/USER/REPO/pull/5386/files#r123" |
| 57 | + ); |
| 58 | + MatcherAssert.assertThat( |
| 59 | + issue.valid(), |
| 60 | + Matchers.is(true) |
| 61 | + ); |
| 62 | + } |
| 63 | + |
| 64 | + @Test |
| 65 | + void issueUrlShouldBeValid() { |
| 66 | + final IssueUrl issue = new IssueUrl( |
| 67 | + "https://api.github.com/repos/USER/REPO/issues/5182" |
| 68 | + ); |
| 69 | + MatcherAssert.assertThat( |
| 70 | + issue.valid(), |
| 71 | + Matchers.is(true) |
| 72 | + ); |
| 73 | + } |
| 74 | + |
| 75 | + @Test |
| 76 | + void commitUrlShouldBeNotValid() { |
| 77 | + final IssueUrl issue = new IssueUrl( |
| 78 | + "https://api.github.com/repos/USER/REPO/commit/2a1f8" |
| 79 | + ); |
| 80 | + MatcherAssert.assertThat( |
| 81 | + issue.valid(), |
| 82 | + Matchers.is(false) |
| 83 | + ); |
| 84 | + } |
| 85 | + |
| 86 | + @Test |
| 87 | + void pullRequestIdShouldBeReturned() { |
| 88 | + final IssueUrl issue = new IssueUrl( |
| 89 | + "https://api.github.com/repos/USER/REPO/pull/5186" |
| 90 | + ); |
| 91 | + MatcherAssert.assertThat( |
| 92 | + issue.id(), |
| 93 | + Matchers.is(5186) |
| 94 | + ); |
| 95 | + } |
| 96 | + |
| 97 | + @Test |
| 98 | + void issueIdShouldBeReturned() { |
| 99 | + final IssueUrl issue = new IssueUrl( |
| 100 | + "https://api.github.com/repos/USER/REPO/issues/5782" |
| 101 | + ); |
| 102 | + MatcherAssert.assertThat( |
| 103 | + issue.id(), |
| 104 | + Matchers.is(5782) |
| 105 | + ); |
| 106 | + } |
| 107 | + |
| 108 | + @Test |
| 109 | + void pullRequestIdFromReviewUrlShouldBeValid() { |
| 110 | + final IssueUrl issue = new IssueUrl( |
| 111 | + "https://api.github.com/repos/USER/REPO/pull/5886/files#r123" |
| 112 | + ); |
| 113 | + MatcherAssert.assertThat( |
| 114 | + issue.id(), |
| 115 | + Matchers.is(5886) |
| 116 | + ); |
| 117 | + } |
| 118 | + |
| 119 | + @Test |
| 120 | + void commitIdShouldNotBeReturned() { |
| 121 | + final IssueUrl issue = new IssueUrl( |
| 122 | + "https://api.github.com/repos/USER/REPO/commit/2a4f8" |
| 123 | + ); |
| 124 | + Assertions.assertThrows( |
| 125 | + IllegalStateException.class, |
| 126 | + issue::id |
| 127 | + ); |
| 128 | + } |
| 129 | + |
| 130 | + @Test |
| 131 | + void urlShouldNotBeEmpty() { |
| 132 | + Assertions.assertThrows( |
| 133 | + IllegalArgumentException.class, |
| 134 | + () -> new IssueUrl("") |
| 135 | + ); |
| 136 | + } |
| 137 | + |
| 138 | + @Test |
| 139 | + void urlShouldNotBeNull() { |
| 140 | + Assertions.assertThrows( |
| 141 | + IllegalArgumentException.class, |
| 142 | + () -> new IssueUrl(null) |
| 143 | + ); |
| 144 | + } |
| 145 | +} |
0 commit comments