blob: 63f36c2311f46f7081d9635b894b19337cafe69a [file] [log] [blame]
// Copyright (C) 2019 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.checks;
import static com.google.common.truth.Truth.assertThat;
import static com.google.gerrit.testing.GerritJUnit.assertThrows;
import com.google.gerrit.extensions.restapi.BadRequestException;
import org.junit.Test;
public class UrlValidatorTest {
@Test
public void validUrls() throws Exception {
assertThat(UrlValidator.clean("https://foo.com/")).isEqualTo("https://foo.com/");
assertThat(UrlValidator.clean("http://foo.com/")).isEqualTo("http://foo.com/");
}
@Test
public void emptyUrls() throws Exception {
assertThat(UrlValidator.clean("")).isEqualTo("");
assertThat(UrlValidator.clean(" ")).isEqualTo("");
assertThat(UrlValidator.clean(" \t ")).isEqualTo("");
}
@Test
public void trimUrls() throws Exception {
assertThat(UrlValidator.clean(" https://foo.com/")).isEqualTo("https://foo.com/");
assertThat(UrlValidator.clean("https://foo.com/ ")).isEqualTo("https://foo.com/");
assertThat(UrlValidator.clean(" https://foo.com/ ")).isEqualTo("https://foo.com/");
}
@Test
public void notUrls() throws Exception {
assertInvalidUrl("foobar", "invalid URL: foobar");
assertInvalidUrl("foobar:", "invalid URL: foobar:");
assertInvalidUrl("foo http://bar.com/", "invalid URL: foo http://bar.com/");
}
@Test
public void nonHttpUrls() throws Exception {
assertInvalidUrl("ftp://foo.com/", "only http/https URLs supported: ftp://foo.com/");
assertInvalidUrl(
"mailto:user@example.com", "only http/https URLs supported: mailto:user@example.com");
assertInvalidUrl(
"javascript:alert('h4x0r3d')",
"only http/https URLs supported: javascript:alert('h4x0r3d')");
}
private static void assertInvalidUrl(String url, String expectedMessage) {
BadRequestException thrown =
assertThrows(BadRequestException.class, () -> UrlValidator.clean(url));
assertThat(thrown).hasMessageThat().isEqualTo(expectedMessage);
}
}