/* * Copyright 2012-2016 the original author or authors. * * 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 org.springframework.boot.cli.compiler.dependencies; import java.util.Arrays; import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.BDDMockito.given; /** * Tests for {@link CompositeDependencyManagement} * * @author Andy Wilkinson */ public class CompositeDependencyManagementTests { @Mock private DependencyManagement dependencyManagement1; @Mock private DependencyManagement dependencyManagement2; @Before public void setup() { MockitoAnnotations.initMocks(this); } @Test public void unknownSpringBootVersion() { given(this.dependencyManagement1.getSpringBootVersion()).willReturn(null); given(this.dependencyManagement2.getSpringBootVersion()).willReturn(null); assertThat(new CompositeDependencyManagement(this.dependencyManagement1, this.dependencyManagement2).getSpringBootVersion()).isNull(); } @Test public void knownSpringBootVersion() { given(this.dependencyManagement1.getSpringBootVersion()).willReturn("1.2.3"); given(this.dependencyManagement2.getSpringBootVersion()).willReturn("1.2.4"); assertThat(new CompositeDependencyManagement(this.dependencyManagement1, this.dependencyManagement2).getSpringBootVersion()).isEqualTo("1.2.3"); } @Test public void unknownDependency() { given(this.dependencyManagement1.find("artifact")).willReturn(null); given(this.dependencyManagement2.find("artifact")).willReturn(null); assertThat(new CompositeDependencyManagement(this.dependencyManagement1, this.dependencyManagement2).find("artifact")).isNull(); } @Test public void knownDependency() { given(this.dependencyManagement1.find("artifact")) .willReturn(new Dependency("test", "artifact", "1.2.3")); given(this.dependencyManagement2.find("artifact")) .willReturn(new Dependency("test", "artifact", "1.2.4")); assertThat(new CompositeDependencyManagement(this.dependencyManagement1, this.dependencyManagement2).find("artifact")) .isEqualTo(new Dependency("test", "artifact", "1.2.3")); } @Test public void getDependencies() { given(this.dependencyManagement1.getDependencies()) .willReturn(Arrays.asList(new Dependency("test", "artifact", "1.2.3"))); given(this.dependencyManagement2.getDependencies()) .willReturn(Arrays.asList(new Dependency("test", "artifact", "1.2.4"))); assertThat(new CompositeDependencyManagement(this.dependencyManagement1, this.dependencyManagement2).getDependencies()).containsOnly( new Dependency("test", "artifact", "1.2.3"), new Dependency("test", "artifact", "1.2.4")); } }