blob: 1727b6ad2208d87806a71d6100e327569a12ca64 [file] [log] [blame]
package org.eclipse.openk.portal.health.impl;
import org.junit.Before;
import org.junit.Test;
import org.powermock.reflect.Whitebox;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class KeyCloakPresentHealthCheckTest {
private KeyCloakPresentHealthCheck hc;
@Before
public void init() {
hc = new KeyCloakPresentHealthCheck() {
public boolean checkit;
@Override
protected boolean checkit() {
return checkit;
}
};
}
@Test
public void testOk() throws Exception {
Whitebox.setInternalState(hc, "checkit", true);
assertTrue(hc.check().isHealthy());
}
@Test
public void testNok() throws Exception {
Whitebox.setInternalState(hc, "checkit", false);
assertFalse(hc.check().isHealthy());
}
}