/*************************GO-LICENSE-START********************************* * Copyright 2017 ThoughtWorks, Inc. * * 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. *************************GO-LICENSE-END***********************************/ package com.thoughtworks.go.config; import com.thoughtworks.go.config.helper.ValidationContextMother; import org.junit.Test; import static org.hamcrest.core.Is.is; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertThat; public class RoleConfigTest { @Test public void validate_presenceOfRoleName(){ validatePresenceOfRoleName(new Validator() { @Override public void validate(RoleConfig roleConfig, ValidationContext context) { roleConfig.validate(context); } }); } @Test public void validate_nullNameInRole(){ validateNullRoleName(new Validator() { @Override public void validate(RoleConfig roleConfig, ValidationContext context) { roleConfig.validate(context); } }); } @Test public void validate_uniquenessOfRoleName() throws Exception { validateUniquenessOfRoleName(new Validator() { @Override public void validate(RoleConfig roleConfig, ValidationContext context) { roleConfig.validate(context); } }); } @Test public void validateTree_presenceOfRoleName(){ validatePresenceOfRoleName(new Validator() { @Override public void validate(RoleConfig roleConfig, ValidationContext context) { assertFalse(roleConfig.validateTree(context)); } }); } @Test public void validateTree_nullNameInRole(){ validateNullRoleName(new Validator() { @Override public void validate(RoleConfig roleConfig, ValidationContext context) { roleConfig.validateTree(context); } }); } @Test public void validateTree_uniquenessOfRoleName() throws Exception { validateUniquenessOfRoleName(new Validator() { @Override public void validate(RoleConfig roleConfig, ValidationContext context) { assertFalse(roleConfig.validateTree(context)); } }); } private void validatePresenceOfRoleName(Validator v) { RoleConfig role = new RoleConfig(new CaseInsensitiveString("")); v.validate(role, ValidationContextMother.validationContext(new SecurityConfig())); assertThat(role.errors().size(), is(1)); assertThat(role.errors().get("name").get(0), is("Invalid role name name ''. This must be alphanumeric and can" + " contain underscores and periods (however, it cannot start with a period). The maximum allowed length is 255 characters.")); } private void validateNullRoleName(Validator v) { RoleConfig role = new RoleConfig(null); v.validate(role, ValidationContextMother.validationContext(new SecurityConfig())); assertThat(role.errors().size(), is(1)); assertThat(role.errors().get("name").get(0), is("Invalid role name name 'null'. This must be alphanumeric and can" + " contain underscores and periods (however, it cannot start with a period). The maximum allowed length is 255 characters.")); } public void validateUniquenessOfRoleName(Validator v) throws Exception { RoleConfig role = new RoleConfig(new CaseInsensitiveString("admin")); SecurityConfig securityConfig = new SecurityConfig(); ValidationContext validationContext = ValidationContextMother.validationContext(securityConfig); securityConfig.getRoles().add(new RoleConfig(new CaseInsensitiveString("admin"))); securityConfig.getRoles().add(role); v.validate(role, validationContext); assertThat(role.errors().size(), is(1)); assertThat(role.errors().get("name").get(0), is("Role names should be unique. Role with the same name exists.")); } interface Validator { void validate(RoleConfig roleConfig, ValidationContext context); } }