/**
* Copyright 2014 Netflix, Inc.
*
* 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.netflix.config.sources;
import com.amazonaws.auth.DefaultAWSCredentialsProviderChain;
import com.amazonaws.services.dynamodbv2.AmazonDynamoDB;
import com.amazonaws.services.dynamodbv2.AmazonDynamoDBClient;
import com.netflix.config.PollResult;
import static com.netflix.config.sources.DynamoDbIntegrationTestHelper.*;
import static org.junit.Assert.assertEquals;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* User: gorzell
* Date: 8/7/12
*/
public class DynamoDbConfigurationSourceIntegrationTest {
private static final String tableName = DynamoDbConfigurationSource.defaultTable + "UNITTEST";
private static AmazonDynamoDB dbClient;
@BeforeClass
public static void setUpClass() throws Exception {
try {
dbClient = new AmazonDynamoDBClient(new DefaultAWSCredentialsProviderChain().getCredentials());
} catch (Exception e) {
e.printStackTrace();
}
System.setProperty("com.netflix.config.dynamo.tableName", tableName);
if (dbClient != null) {
createTable(dbClient, tableName);
addElements(dbClient, tableName);
}
}
@AfterClass
public static void tearDownClass() throws Exception {
if (dbClient != null) removeTable(dbClient, tableName);
}
//@Test
public void testPoll() throws Exception {
if (dbClient != null) {
DynamoDbConfigurationSource testConfigSource = new DynamoDbConfigurationSource();
PollResult result = testConfigSource.poll(true, null);
assertEquals(3, result.getComplete().size());
assertEquals("val1", result.getComplete().get("test1"));
assertEquals("val2", result.getComplete().get("test2"));
assertEquals("val3", result.getComplete().get("test3"));
}
}
//@Test
public void testUpdate() throws Exception {
if (dbClient != null) {
DynamoDbConfigurationSource testConfigSource = new DynamoDbConfigurationSource();
PollResult result = testConfigSource.poll(true, null);
assertEquals(3, result.getComplete().size());
assertEquals("val1", result.getComplete().get("test1"));
assertEquals("val2", result.getComplete().get("test2"));
assertEquals("val3", result.getComplete().get("test3"));
updateValues(dbClient, tableName);
result = testConfigSource.poll(true, null);
assertEquals(3, result.getComplete().size());
assertEquals("vala", result.getComplete().get("test1"));
assertEquals("valb", result.getComplete().get("test2"));
assertEquals("valc", result.getComplete().get("test3"));
}
}
}