Allow to remove dependency from MutableProjectDescription

Closes gh-1207
This commit is contained in:
Stephane Nicoll
2021-03-22 16:18:05 +01:00
parent bfc2b7566f
commit 433d48cc10
2 changed files with 54 additions and 0 deletions

View File

@@ -133,6 +133,10 @@ public class MutableProjectDescription implements ProjectDescription {
return addDependency(id, builder.build()); return addDependency(id, builder.build());
} }
public Dependency removeDependency(String id) {
return this.requestedDependencies.remove(id);
}
@Override @Override
public Map<String, Dependency> getRequestedDependencies() { public Map<String, Dependency> getRequestedDependencies() {
return Collections.unmodifiableMap(this.requestedDependencies); return Collections.unmodifiableMap(this.requestedDependencies);

View File

@@ -0,0 +1,50 @@
/*
* Copyright 2012-2021 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
*
* https://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 io.spring.initializr.generator.project;
import io.spring.initializr.generator.buildsystem.Dependency;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
/**
* Tests for {@link MutableProjectDescription}.
*
* @author Stephane Nicoll
*/
class MutableProjectDescriptionTests {
@Test
void removeDependencyWithExistingDependencyReturnsDependency() {
MutableProjectDescription description = new MutableProjectDescription();
description.addDependency("core", mock(Dependency.class));
Dependency testDependency = mock(Dependency.class);
description.addDependency("test", testDependency);
assertThat(description.removeDependency("test")).isSameAs(testDependency);
assertThat(description.getRequestedDependencies()).containsOnlyKeys("core");
}
@Test
void removeDependencyWithUnknownDependencyReturnsNull() {
MutableProjectDescription description = new MutableProjectDescription();
description.addDependency("core", mock(Dependency.class));
assertThat(description.removeDependency("unknown")).isNull();
assertThat(description.getRequestedDependencies()).containsOnlyKeys("core");
}
}