RealmDefinitionTestCase.java

80 lines | 3.123 kB Blame History Raw Download
/*
 * Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors
 * as indicated by the @author tags. 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 org.keycloak.subsystem.extension;


import org.jboss.dmr.ModelNode;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;



/**
 *
 * @author Stan Silvert ssilvert@redhat.com (C) 2013 Red Hat Inc.
 */
public class RealmDefinitionTestCase {

    private ModelNode model;

    @Before
    public void setUp() {
        model = new ModelNode();
        model.get("realm").set("demo");
        model.get("resource").set("customer-portal");
        model.get("realm-public-key").set("MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCrVrCuTtArbgaZzL1hvh0xtL5mc7o0NqPVnYXkLvgcwiC3BjLGw1tGEGoJaXDuSaRllobm53JBhjx33UNv+5z/UMG4kytBWxheNVKnL6GgqlNabMaFfPLPCF8kAgKnsi79NMo+n6KnSY8YeUmec/p2vjO2NjsSAVcWEQMVhJ31LwIDAQAB");
        model.get("auth-url").set("http://localhost:8080/auth-server/rest/realms/demo/tokens/login");
        model.get("code-url").set("http://localhost:8080/auth-server/rest/realms/demo/tokens/access/codes");
        model.get("expose-token").set(true);
        ModelNode credential = new ModelNode();
        credential.get("password").set("password");
        model.get("credentials").set(credential);
    }

    @Test
    public void testIsTruststoreSetIfRequired() throws Exception {
        model.get("ssl-not-required").set(true);
        model.get("disable-trust-manager").set(true);
        Assert.assertTrue(RealmDefinition.validateTruststoreSetIfRequired(model));

        model.get("ssl-not-required").set(true);
        model.get("disable-trust-manager").set(false);
        Assert.assertTrue(RealmDefinition.validateTruststoreSetIfRequired(model));

        model.get("ssl-not-required").set(false);
        model.get("disable-trust-manager").set(true);
        Assert.assertTrue(RealmDefinition.validateTruststoreSetIfRequired(model));

        model.get("ssl-not-required").set(false);
        model.get("disable-trust-manager").set(false);
        Assert.assertFalse(RealmDefinition.validateTruststoreSetIfRequired(model));

        model.get("ssl-not-required").set(false);
        model.get("disable-trust-manager").set(false);
        model.get("truststore").set("foo");
        Assert.assertFalse(RealmDefinition.validateTruststoreSetIfRequired(model));

        model.get("ssl-not-required").set(false);
        model.get("disable-trust-manager").set(false);
        model.get("truststore").set("foo");
        model.get("truststore-password").set("password");
        Assert.assertTrue(RealmDefinition.validateTruststoreSetIfRequired(model));
    }

}