/* * Copyright (c) 2008-2017, Hazelcast, Inc. 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 com.hazelcast.util; import com.hazelcast.test.HazelcastSerialClassRunner; import com.hazelcast.test.annotation.QuickTest; import org.junit.Test; import org.junit.experimental.categories.Category; import org.junit.runner.RunWith; import static com.hazelcast.partition.strategy.StringPartitioningStrategy.getBaseName; import static com.hazelcast.partition.strategy.StringPartitioningStrategy.getPartitionKey; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; @RunWith(HazelcastSerialClassRunner.class) @Category(QuickTest.class) public class StringPartitioningStrategyTest { @Test public void testGetBaseName() { assertEquals("foo", getBaseName("foo")); assertEquals("", getBaseName("")); assertNull(getBaseName(null)); assertEquals("foo", getBaseName("foo@bar")); assertEquals("foo", getBaseName("foo@")); assertEquals("", getBaseName("@bar")); assertEquals("foo", getBaseName("foo@bar@nii")); } @Test public void testGetPartitionKey() { assertEquals("foo", getPartitionKey("foo")); assertEquals("", getPartitionKey("")); assertNull(getPartitionKey(null)); assertEquals("bar", getPartitionKey("foo@bar")); assertEquals("", getPartitionKey("foo@")); assertEquals("bar", getPartitionKey("@bar")); assertEquals("bar@nii", getPartitionKey("foo@bar@nii")); } }