Repository: jclouds Updated Branches: refs/heads/2.1.x 3878e6a61 -> 880287c6a
Adds test for Azure name validator Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/880287c6 Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/880287c6 Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/880287c6 Branch: refs/heads/2.1.x Commit: 880287c6abb67d94fe35d80747b14bf20eb416b2 Parents: df5930f Author: Dani Estevez <[email protected]> Authored: Thu May 24 16:03:20 2018 -0400 Committer: Ignasi Barrera <[email protected]> Committed: Fri May 25 09:40:21 2018 +0200 ---------------------------------------------------------------------- .../arm/config/AzureNameValidatorTest.java | 64 ++++++++++++++++++++ 1 file changed, 64 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jclouds/blob/880287c6/providers/azurecompute-arm/src/test/java/org/jclouds/azurecompute/arm/config/AzureNameValidatorTest.java ---------------------------------------------------------------------- diff --git a/providers/azurecompute-arm/src/test/java/org/jclouds/azurecompute/arm/config/AzureNameValidatorTest.java b/providers/azurecompute-arm/src/test/java/org/jclouds/azurecompute/arm/config/AzureNameValidatorTest.java new file mode 100644 index 0000000..23e8850 --- /dev/null +++ b/providers/azurecompute-arm/src/test/java/org/jclouds/azurecompute/arm/config/AzureNameValidatorTest.java @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 org.jclouds.azurecompute.arm.config; + +import org.jclouds.azurecompute.arm.compute.config.AzureNameValidator; +import org.testng.annotations.Test; + +import com.google.common.base.Strings; + +@Test(groups = "unit", testName = "AzureNameValidatorTest") +public class AzureNameValidatorTest { + + AzureNameValidator validator = new AzureNameValidator(); + + @Test + public void testNamesValidity() { + validator.validate("7sdaiDD00-_.rrr"); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testEmptyName() { + validator.validate(""); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testNullName() { + validator.validate(null); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testNameTooShort() { + validator.validate("x"); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testNameTooLong() { + validator.validate(Strings.repeat("x", 64)); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testInvalidStartingCharacterInName() { + validator.validate("_whatever"); + } + + @Test(expectedExceptions = IllegalArgumentException.class) + public void testInvalidCharactersInName() { + validator.validate("is/not/ok/"); + } + +}
