Package org.apache.ambari.server.orm

Source Code of org.apache.ambari.server.orm.JdbcPropertyTest

/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you 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.apache.ambari.server.orm;

import java.util.Properties;

import org.apache.ambari.server.configuration.Configuration;
import org.apache.ambari.server.controller.ControllerModule;
import org.apache.ambari.server.state.Clusters;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import com.google.inject.Guice;
import com.google.inject.Injector;

public class JdbcPropertyTest {
  Properties properties;

  @Before
  public void configure() {
    properties = new Properties();
    properties.setProperty(Configuration.SERVER_PERSISTENCE_TYPE_KEY, "in-memory");
    properties.setProperty(Configuration.METADETA_DIR_PATH, "src/test/resources/stacks");
    properties.setProperty(Configuration.SERVER_VERSION_FILE, "target/version");
    properties.setProperty(Configuration.OS_VERSION_KEY, "centos5");
  }
 
  @Test
  public void testNormal() throws Exception {
    Injector injector = Guice.createInjector(new ControllerModule(properties));
    injector.getInstance(GuiceJpaInitializer.class);

    injector.getInstance(Clusters.class);
  }
 
  @Test
  public void testJdbcProperty() throws Exception {
    properties.setProperty(Configuration.SERVER_JDBC_PROPERTIES_PREFIX + "shutdown", "true");
    Injector injector = Guice.createInjector(new ControllerModule(properties));
    injector.getInstance(GuiceJpaInitializer.class);
    try {
      injector.getInstance(Clusters.class);
      Assert.fail("Expected in-memory to fail because property 'shutdown' specified.");
    } catch (Throwable t) {
      // expect failure
    }
  }

 
}
TOP

Related Classes of org.apache.ambari.server.orm.JdbcPropertyTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.