/* * 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.service; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Sets; import com.streamreduce.AbstractServiceTestCase; import com.streamreduce.connections.ConnectionProviderFactory; import com.streamreduce.core.model.Connection; import com.streamreduce.core.model.SobaObject; import com.streamreduce.core.service.ConnectionService; import com.streamreduce.test.service.TestUtils; import org.junit.Assert; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; /** * Service tests for the hashtags feature of {@link SobaObject}. */ public class HashTagServiceITCase extends AbstractServiceTestCase { @Autowired ConnectionService connectionService; @Autowired ConnectionProviderFactory connectionProviderFactory; Connection connection; @Before @Ignore("Integration Tests depended on sensitive account keys, ignoring until better harness is in place.") public void setUp() throws Exception { super.setUp(); connection = TestUtils.createTestFeedConnection(); connection.setUser(testUser); connection.setAccount(testAccount); connection.setHashtags(ImmutableSet.of("#RSS", "#jclouds", "#GitHub")); connectionService.createConnection(connection); } @Test @Ignore("Integration Tests depended on sensitive account keys, ignoring until better harness is in place.") public void testConnectionHashtagsLowerCased() throws Exception { for (String hashtag : connection.getHashtags()) { Assert.assertEquals(hashtag.toLowerCase(), hashtag); } connectionService.addHashtag(connection, testUser, "TeStInG"); for (String hashtag : connection.getHashtags()) { Assert.assertEquals(hashtag.toLowerCase(), hashtag); } } @Test @Ignore("Integration Tests depended on sensitive account keys, ignoring until better harness is in place.") public void testRemoveTagsFromConnectionMixedCase() throws Exception { connectionService.removeHashtag(connection,connection,"#JclOuDs"); Assert.assertEquals(Sets.newTreeSet(Sets.newHashSet("#rss","#github")),connection.getHashtags()); } @Test @Ignore("Integration Tests depended on sensitive account keys, ignoring until better harness is in place.") public void testRemoveTagsFromConnectionNoLeadingPound() throws Exception { connectionService.createConnection(connection); connectionService.removeHashtag(connection,connection,"jclouds"); Assert.assertEquals(Sets.newTreeSet(Sets.newHashSet("#rss", "#github")),connection.getHashtags()); } }