blob: 39ba56f32e89fcc5251e0f335f44068f4620d5fa [file] [log] [blame]
/*
* 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.skywalking.apm.plugin.jedis.v2;
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.EnhancedInstance;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.runners.MockitoJUnitRunner;
import redis.clients.jedis.HostAndPort;
import java.util.LinkedHashSet;
import java.util.Set;
import static org.mockito.Mockito.verify;
@RunWith(MockitoJUnitRunner.class)
public class JedisClusterConstructorWithListHostAndPortArgInterceptorTest {
private JedisClusterConstructorWithListHostAndPortArgInterceptor interceptor;
private Set<HostAndPort> hostAndPortSet;
@Mock
private EnhancedInstance enhancedInstance;
@Before
public void setUp() throws Exception {
hostAndPortSet = new LinkedHashSet<HostAndPort>();
interceptor = new JedisClusterConstructorWithListHostAndPortArgInterceptor();
hostAndPortSet.add(new HostAndPort("127.0.0.1", 6379));
hostAndPortSet.add(new HostAndPort("127.0.0.1", 16379));
}
@After
public void tearDown() throws Exception {
}
@Test
public void onConstruct() throws Exception {
interceptor.onConstruct(enhancedInstance, new Object[] {hostAndPortSet});
verify(enhancedInstance).setSkyWalkingDynamicField("127.0.0.1:6379;127.0.0.1:16379;");
}
@Test
public void onHugeClusterConstruct() throws Exception {
hostAndPortSet = new LinkedHashSet<HostAndPort>();
for (int i = 0; i < 100; i++) {
hostAndPortSet.add(new HostAndPort("localhost", i));
}
enhancedInstance = new EnhancedInstance() {
private Object v;
@Override
public Object getSkyWalkingDynamicField() {
return v;
}
@Override
public void setSkyWalkingDynamicField(Object value) {
this.v = value;
}
};
interceptor.onConstruct(enhancedInstance, new Object[] {hostAndPortSet});
Assert.assertTrue(enhancedInstance.getSkyWalkingDynamicField().toString().length() == 200);
}
}