/* * Copyright 2012 Nodeable 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.streamreduce.core.model; import com.streamreduce.AbstractServiceTestCase; import com.streamreduce.core.service.ConnectionService; import com.streamreduce.test.service.TestUtils; import org.junit.Assert; import org.junit.Ignore; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import java.util.Date; /** * Extension of {@link AbstractServiceTestCase} that will test that * {@link ObjectWithId} works as expected. */ public class ObjectWithIdITCase extends AbstractServiceTestCase { @Autowired private ConnectionService connectionService; @Test @Ignore("Integration Tests depended on sensitive account keys, ignoring until better harness is in place.") public void testObjectVersioning() throws Exception { Connection testConnection = TestUtils.createTestFeedConnection(); testConnection.setAccount(testAccount); testConnection.setUser(testUser); // Initial version is 0 Assert.assertEquals(0, testConnection.getVersion()); connectionService.createConnection(testConnection); // After creation, version is 1 Assert.assertEquals(1, testConnection.getVersion()); testConnection.setDescription("Updated description."); connectionService.updateConnection(testConnection); // After non-silent update, version is 2 Assert.assertEquals(2, testConnection.getVersion()); testConnection.setLastActivityPollDate(new Date()); connectionService.updateConnection(testConnection, true); // After silent update, version should still be 2 Assert.assertEquals(2, testConnection.getVersion()); } }