| // Copyright (C) 2020 The Android Open Source Project |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| package com.google.gerrit.plugins.codeowners.util; |
| |
| import static com.google.common.truth.Truth.assertThat; |
| import static com.google.common.truth.Truth8.assertThat; |
| import static com.google.gerrit.testing.GerritJUnit.assertThrows; |
| |
| import com.google.gerrit.plugins.codeowners.acceptance.AbstractCodeOwnersTest; |
| import java.nio.file.Path; |
| import java.nio.file.Paths; |
| import org.junit.Test; |
| |
| /** Tests for {@link com.google.gerrit.plugins.codeowners.util.JgitPath}. */ |
| public class JgitPathTest extends AbstractCodeOwnersTest { |
| @Test |
| public void getJgitPathOfStringPath() throws Exception { |
| assertThat(JgitPath.of("foo/bar/OWNERS").get()).isEqualTo("foo/bar/OWNERS"); |
| assertThat(JgitPath.of("/foo/bar/OWNERS").get()).isEqualTo("foo/bar/OWNERS"); |
| } |
| |
| @Test |
| public void cannotGetJgitPathOfNullStringPath() throws Exception { |
| NullPointerException npe = |
| assertThrows(NullPointerException.class, () -> JgitPath.of((String) null)); |
| assertThat(npe).hasMessageThat().isEqualTo("path"); |
| } |
| |
| @Test |
| public void getJgitPathOfPath() throws Exception { |
| assertThat(JgitPath.of(Paths.get("foo/bar/OWNERS")).get()).isEqualTo("foo/bar/OWNERS"); |
| assertThat(JgitPath.of(Paths.get("/foo/bar/OWNERS")).get()).isEqualTo("foo/bar/OWNERS"); |
| } |
| |
| @Test |
| public void cannotGetJgitPathOfNullPath() throws Exception { |
| NullPointerException npe = |
| assertThrows(NullPointerException.class, () -> JgitPath.of((Path) null)); |
| assertThat(npe).hasMessageThat().isEqualTo("path"); |
| } |
| |
| @Test |
| public void getPathAsAbsolutePath() throws Exception { |
| assertThat(JgitPath.of("foo/bar/OWNERS").getAsAbsolutePath()) |
| .isEqualTo(Paths.get("/foo/bar/OWNERS")); |
| } |
| |
| @Test |
| public void testToString() throws Exception { |
| String path = "foo/bar/baz.md"; |
| assertThat(JgitPath.of(path).toString()).isEqualTo(path); |
| assertThat(JgitPath.of("/" + path).toString()).isEqualTo(path); |
| } |
| |
| @Test |
| public void testEquals() throws Exception { |
| String path = "foo/bar/baz.md"; |
| assertThat(JgitPath.of(path)).isEqualTo(JgitPath.of(path)); |
| assertThat(JgitPath.of("/" + path)).isEqualTo(JgitPath.of(path)); |
| assertThat(JgitPath.of("/" + path)).isNotEqualTo(JgitPath.of("foo/bar/baz.txt")); |
| assertThat(JgitPath.of("/" + path)).isNotEqualTo(new Object()); |
| } |
| |
| @Test |
| public void testHashCode() throws Exception { |
| String path = "foo/bar/baz.md"; |
| assertThat(JgitPath.of(path).hashCode()).isEqualTo(JgitPath.of(path).hashCode()); |
| assertThat(JgitPath.of("/" + path).hashCode()).isEqualTo(JgitPath.of(path).hashCode()); |
| assertThat(JgitPath.of("/" + path).hashCode()) |
| .isNotEqualTo(JgitPath.of("foo/bar/baz.txt").hashCode()); |
| } |
| } |