- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在使用 Togglz 在我们的项目中打开和关闭功能。以下 TogglzFeature 枚举正在实现 org.togglz.core.Feature 接口(interface)
public enum TogglzFeature implements Feature {
@EnabledByDefault
@Label("Current XSLT code")
FEATURE_XSLT,
@Label("NEW JAXB code")
FEATURE_JAXB;
public boolean isActive() {
FeatureManager manager = FeatureContext.getFeatureManager();
return manager.isActive(this);
}
}
mut_1(params)
)正在检查枚举,例如
if(TogglzFeature.FEATURE_JAXB.isActive()) { dothings();}
TogglzFeature.FEATURE_JAXB.isActive()
的最佳方法是什么?返回真?
@RunWith(PowerMockRunner.class)
@PrepareForTest({TogglzFeature.class})
public class myTestClass {
//private members and set up
@Test
public void testTogglz(){
PowerMockito.mockStatic(TogglzFeature.class);
BDDMockito.given(TogglzFeature.FEATURE_JAXB.isActive()).willReturn(true);
//execution and verification
}
}
java.lang.VerifyError: Inconsistent stackmap frames at branch target 128
Exception Details:
Location:
com/lmig/ci/rate/togglz/TogglzFeature.values()[Lcom/lmig/ci/rate/togglz/TogglzFeature; @128: ldc
Reason:
Type 'java/lang/Object' (current frame, locals[1]) is not assignable to '[Lcom/lmig/ci/rate/togglz/TogglzFeature;' (stack map, locals[1])
Current Frame:
bci: @120
flags: { }
locals: { top, 'java/lang/Object', null, null }
stack: { 'java/lang/Object', null }
Stackmap Frame:
bci: @128
flags: { }
locals: { top, '[Lcom/lmig/ci/rate/togglz/TogglzFeature;' }
stack: { }
Bytecode:
0x0000000: 1248 b800 4e12 4f03 bd00 5112 53b8 0057
0x0000010: 1259 b800 5f4b 2a01 4c01 4d2b 127e b800
0x0000020: 8012 8112 82b8 0085 b800 894e 2db2 0063
0x0000030: a600 0ab2 0063 4da7 0008 2dc0 008a 4d2c
0x0000040: a500 082a c000 64b0 014c 014d 2b12 8bb8
0x0000050: 0080 128c 128d b800 85b8 0089 4e2d b200
0x0000060: 63a6 000a b200 014d a700 082d c000 644d
0x0000070: 2c4c 014d 014e 2b01 a500 082b 4ea7 0009
0x0000080: 128f b800 804e 2d12 9003 bd00 5112 91b8
0x0000090: 0093 1295 b800 963a 0419 04b2 0063 a600
0x00000a0: 0b2b b600 984d a700 0919 04c0 008a 4d2c
0x00000b0: c000 03b0
Stackmap Table:
full_frame(@58,{Object[#81],Top,Top,Object[#81]},{Object[#81]})
full_frame(@63,{Object[#81],Top,Object[#81]},{Object[#81]})
chop_frame(@72,3)
full_frame(@107,{Top,Top,Top,Object[#81]},{})
full_frame(@112,{Top,Top,Object[#81]},{})
full_frame(@128,{Top,Object[#50]},{})
append_frame(@134,Top,Object[#81])
full_frame(@169,{Top,Top,Top,Top,Object[#81]},{})
full_frame(@175,{Top,Top,Object[#81]},{})
at java.lang.Class.getDeclaredConstructors0(Native Method)
at java.lang.Class.privateGetDeclaredConstructors(Class.java:2671)
at java.lang.Class.getDeclaredConstructors(Class.java:2020)
at org.powermock.api.mockito.repackaged.ClassImposterizer.setConstructorsAccessible(ClassImposterizer.java:86)
at org.powermock.api.mockito.repackaged.ClassImposterizer.imposterise(ClassImposterizer.java:72)
at org.powermock.api.mockito.internal.mockcreation.MockCreator.createMethodInvocationControl(MockCreator.java:122)
at org.powermock.api.mockito.internal.mockcreation.MockCreator.createMock(MockCreator.java:70)
at org.powermock.api.mockito.internal.mockcreation.MockCreator.mock(MockCreator.java:47)
at org.powermock.api.mockito.PowerMockito.mockStatic(PowerMockito.java:71)
at com.lmig.ci.rate.orchestration.OrchestratorTest.workerCompShouldGoThroughSteppedAudit(OrchestratorTest.java:97)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.internal.runners.TestMethod.invoke(TestMethod.java:68)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl$PowerMockJUnit44MethodRunner.runTestMethod(PowerMockJUnit44RunnerDelegateImpl.java:316)
at org.junit.internal.runners.MethodRoadie$2.run(MethodRoadie.java:89)
at org.junit.internal.runners.MethodRoadie.runBeforesThenTestThenAfters(MethodRoadie.java:97)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl$PowerMockJUnit44MethodRunner.executeTest(PowerMockJUnit44RunnerDelegateImpl.java:300)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit47RunnerDelegateImpl$PowerMockJUnit47MethodRunner.executeTestInSuper(PowerMockJUnit47RunnerDelegateImpl.java:131)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit47RunnerDelegateImpl$PowerMockJUnit47MethodRunner.access$100(PowerMockJUnit47RunnerDelegateImpl.java:59)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit47RunnerDelegateImpl$PowerMockJUnit47MethodRunner$TestExecutorStatement.evaluate(PowerMockJUnit47RunnerDelegateImpl.java:147)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit47RunnerDelegateImpl$PowerMockJUnit47MethodRunner.evaluateStatement(PowerMockJUnit47RunnerDelegateImpl.java:107)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit47RunnerDelegateImpl$PowerMockJUnit47MethodRunner.executeTest(PowerMockJUnit47RunnerDelegateImpl.java:82)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl$PowerMockJUnit44MethodRunner.runBeforesThenTestThenAfters(PowerMockJUnit44RunnerDelegateImpl.java:288)
at org.junit.internal.runners.MethodRoadie.runTest(MethodRoadie.java:87)
at org.junit.internal.runners.MethodRoadie.run(MethodRoadie.java:50)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl.invokeTestMethod(PowerMockJUnit44RunnerDelegateImpl.java:208)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl.runMethods(PowerMockJUnit44RunnerDelegateImpl.java:147)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl$1.run(PowerMockJUnit44RunnerDelegateImpl.java:121)
at org.junit.internal.runners.ClassRoadie.runUnprotected(ClassRoadie.java:34)
at org.junit.internal.runners.ClassRoadie.runProtected(ClassRoadie.java:44)
at org.powermock.modules.junit4.internal.impl.PowerMockJUnit44RunnerDelegateImpl.run(PowerMockJUnit44RunnerDelegateImpl.java:123)
at org.powermock.modules.junit4.common.internal.impl.JUnit4TestSuiteChunkerImpl.run(JUnit4TestSuiteChunkerImpl.java:121)
at org.powermock.modules.junit4.common.internal.impl.AbstractCommonPowerMockRunner.run(AbstractCommonPowerMockRunner.java:53)
at org.powermock.modules.junit4.PowerMockRunner.run(PowerMockRunner.java:59)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
最佳答案
你不需要 mock 任何东西。 Togglz 附带了一个用于单元测试功能切换的特殊模块。看看这里:
http://www.togglz.org/documentation/testing.html
例如,有一个 JUnit 规则,它提供了一种切换功能的简单方法:
public class SomeJunitTest {
@Rule
public TogglzRule togglzRule = TogglzRule.allEnabled(MyFeatures.class);
@Test
public void testToggleFeature() {
// all features are active by default
assertTrue(MyFeatures.FEATURE_ONE.isActive());
// you can easily modify the feature state using the TogglzRule
togglzRule.disable(MyFeatures.FEATURE_ONE);
assertFalse(MyFeatures.FEATURE_ONE.isActive());
}
}
关于java - 开启和关闭 togglz 功能的单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38380837/
从 2.0.0 版开始,Togglz 提供激活策略来配合功能。例如,您可以连接应启用该功能的服务器 IP 地址列表。然而,这些策略实际上是如何附加到一个特征上的呢?我所看到的只是我可以在 Togglz
我们目前正在尝试实现 Togglz Spring-MVC 中的库。 我们目前通过以下方式从 MyFeatures.java 文件管理代码中的切换: import org.togglz.core.Fea
我有两个应用程序 - api 和 dashboard。这两个应用程序都使用同一数据库中的相同功能。 Togglz 控制台仅在 dashboard 应用程序中处于 Activity 状态。问题是,当我更
我们正在做一个项目,我们想使用一些切换功能工具,如 ff4j 或 togglz,但我们对性能有真正的限制,我的意思是我们真的需要一个执行时间更短的工具,我已经检查了一点 ff4j 和 togglz 但
如果我在单元测试中声明一个 TogglzRule,它必须是公开的,否则会抛出异常:java.lang.Exception: The @Rule 'togglzRule' must be public.
最近几天我一直在使用 togglz。 我试图找出togglez API 中是否有基于注释的方法可用。 我想像下面那样做 - public class Application { public st
如何运行嵌入了 jetty 9 的 togglz。我尝试使用以下代码 ServletHolder togglz = new ServletHolder(TogglzConsoleSer
我们正在使用 Togglz 在我们的项目中打开和关闭功能。以下 TogglzFeature 枚举正在实现 org.togglz.core.Feature 接口(interface) public en
我已将 togglz 实现到我的 Spring Boot 应用程序中。我什至可以访问 Togglz 控制台,并且我已经使用 FeatureManager 测试了这些限制。但是,如果我转到 togglz
我需要检索状态发生更改的 togglz 功能名称。有什么办法可以做到这一点吗?过去 1 天我一直坚持这个问题。非常感谢任何帮助。请在下面找到我的示例代码 public enum MyFeatu
在 Maven 上的 Web 应用程序中安装 togglz 时,我不断收到 IllegalStateException: Could not find the FeatureManager。我完全按照
我正在尝试寻找是否可以在非 Web 应用程序中使用 togglz - 就像我们有纯 Java 项目或 Java 批处理程序一样。 我尝试在独立应用程序中添加 togglz 库并尝试运行它。 这是我的代
我尝试将 togglz 集成到我的 Spring Boot 应用程序中,但是看起来自动配置很难提供 FeatureManager。以下是我的堆栈跟踪: 2017-02-23 16:04:30.033
我正在尝试在 Spring Boot 上运行 Togglz 控制台,但我在屏幕上看到了这个: (type=Forbidden, status=403). You are not allowed to
我是在我们公司第一次配置 togglz JDBCStateRepository。 在我从 InMemoryStateRepository 转换为 JDBCStateRepository 的第一个项目中
我正在尝试使用 @Configuration beans 而不是 XML 来实现 Togglz 和 Spring。我不确定如何配置配置 bean 的返回类型。例如: @Configuration pu
将 Togglz 与我的 Spring MVC 应用程序集成时遇到异常。 异常 java.lang.IllegalStateException: Could not find the FeatureM
我正在尝试将 Togglz 集成到 Spring Boot Web 应用程序中。由于我没有成功使用 Togglz 自动配置(没有创建 FeatureManager bean,因此没有创建 Applic
我的 spring-boot+jersey 应用程序已经集成了 togglz。我添加了以下依赖项,如下所示。 // togglz compile('org.togglz:togglz-servlet:
我们的应用程序当前使用 Togglz。我正在从 FileBasedStateRepository 迁移到 JDBCStateRepository。我正在使用构建器创建JDBCStateReposito
我是一名优秀的程序员,十分优秀!