mirror of
https://github.com/google/nomulus.git
synced 2025-05-06 23:17:51 +02:00
Here's an alternate approach that I think simplifies the existing code quite a bit. Now instead of doing: RegistryToolEnvironment.loadFromArgs(args); RegistryToolEnvironment.get().setup(); You just do one chained call: RegistryToolEnvironment.parseFromArgs(args).setup(); or call setup() on a known environment constant: RegistryToolEnvironment.ALPHA.setup(); This avoids having loadFromArgs() implicitly set the active env (but *not* do setup) and then having setup() *not* set the active env, both of which were confusing. Now parseFromArgs() is only responsible for parsing from args, and setup() both sets the env as the active one and does the environment variable setup (which also ensures that the RegistryToolEnvironment.instance field doesn't get out of sync with the RegistryEnvironment value). In addition, this CL adds a runCommandInEnvironment() method to CommandTestCase and ensures that the UNITTEST environment is always set before constructing the default command instance. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=117492978
104 lines
4 KiB
Java
104 lines
4 KiB
Java
// Copyright 2016 Google Inc. All Rights Reserved.
|
|
//
|
|
// 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.domain.registry.tools;
|
|
|
|
import static com.google.common.base.CaseFormat.LOWER_UNDERSCORE;
|
|
import static com.google.common.base.CaseFormat.UPPER_CAMEL;
|
|
import static com.google.common.reflect.Reflection.getPackageName;
|
|
import static com.google.common.truth.Truth.assertWithMessage;
|
|
|
|
import com.google.common.base.Joiner;
|
|
import com.google.common.collect.ImmutableSet;
|
|
import com.google.common.collect.Sets;
|
|
import com.google.common.reflect.ClassPath;
|
|
import com.google.common.reflect.ClassPath.ClassInfo;
|
|
import com.google.common.truth.Expect;
|
|
import com.google.domain.registry.tools.Command.GtechCommand;
|
|
|
|
import org.junit.Before;
|
|
import org.junit.Rule;
|
|
import org.junit.Test;
|
|
import org.junit.rules.ExpectedException;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.JUnit4;
|
|
|
|
import java.io.IOException;
|
|
import java.lang.reflect.Modifier;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
/** Unit tests for {@link GtechTool}. */
|
|
@RunWith(JUnit4.class)
|
|
public class GtechToolTest {
|
|
|
|
@Rule
|
|
public final ExpectedException thrown = ExpectedException.none();
|
|
|
|
@Rule
|
|
public final Expect expect = Expect.create();
|
|
|
|
@Before
|
|
public void init() {
|
|
RegistryToolEnvironment.UNITTEST.setup();
|
|
}
|
|
|
|
@Test
|
|
public void testThatAllCommandsAreInCliOptions() throws Exception {
|
|
Set<Class<? extends GtechCommand>> commandMapClasses =
|
|
ImmutableSet.copyOf(GtechTool.COMMAND_MAP.values());
|
|
Set<Class<? extends GtechCommand>> commandsWithoutCliInvokers =
|
|
Sets.difference(getAllCommandClasses(), commandMapClasses);
|
|
String errorMsg =
|
|
"These Command classes are missing from GtechTool.COMMAND_MAP: "
|
|
+ Joiner.on(", ").join(commandsWithoutCliInvokers);
|
|
assertWithMessage(errorMsg).that(commandsWithoutCliInvokers).isEmpty();
|
|
}
|
|
|
|
@Test
|
|
public void testThatCommandNamesAreDerivedFromClassNames() throws Exception {
|
|
for (Map.Entry<String, ? extends Class<? extends Command>> commandEntry :
|
|
GtechTool.COMMAND_MAP.entrySet()) {
|
|
String className = commandEntry.getValue().getSimpleName();
|
|
expect.that(commandEntry.getKey())
|
|
// JCommander names should match the class name, up to "Command" and case formatting.
|
|
.isEqualTo(UPPER_CAMEL.to(LOWER_UNDERSCORE, className.replaceFirst("Command$", "")));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Gets the set of all non-abstract classes implementing the {@link GtechCommand} interface
|
|
* (abstract class and interface subtypes of Command aren't expected to have cli commands). Note
|
|
* that this also filters out HelpCommand, which has special handling in {@link RegistryCli} and
|
|
* isn't in the command map.
|
|
*
|
|
* @throws IOException if reading the classpath resources fails.
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
private ImmutableSet<Class<? extends GtechCommand>> getAllCommandClasses() throws IOException {
|
|
ImmutableSet.Builder<Class<? extends GtechCommand>> builder = new ImmutableSet.Builder<>();
|
|
for (ClassInfo classInfo : ClassPath
|
|
.from(getClass().getClassLoader())
|
|
.getTopLevelClasses(getPackageName(getClass()))) {
|
|
Class<?> clazz = classInfo.load();
|
|
if (GtechCommand.class.isAssignableFrom(clazz)
|
|
&& !Modifier.isAbstract(clazz.getModifiers())
|
|
&& !Modifier.isInterface(clazz.getModifiers())
|
|
&& !clazz.equals(HelpCommand.class)) {
|
|
builder.add((Class<? extends GtechCommand>) clazz);
|
|
}
|
|
}
|
|
return builder.build();
|
|
}
|
|
}
|