use of com.navercorp.pinpoint.bootstrap.interceptor.scope.InterceptorScopeInvocation in project pinpoint by naver.
the class ThreadLocalScopePoolTest method testAttachment.
@Test
public void testAttachment() throws Exception {
ScopePool pool = new ThreadLocalScopePool();
InterceptorScopeInvocation scope = pool.getScope(new DefaultInterceptorScopeDefinition("test"));
scope.tryEnter(ExecutionPolicy.BOUNDARY);
scope.tryEnter(ExecutionPolicy.BOUNDARY);
Assert.assertNull(scope.getAttachment());
scope.setAttachment("test");
scope.canLeave(ExecutionPolicy.BOUNDARY);
Assert.assertEquals(scope.getAttachment(), "test");
Assert.assertTrue(scope.canLeave(ExecutionPolicy.BOUNDARY));
scope.leave(ExecutionPolicy.BOUNDARY);
Assert.assertEquals("name", scope.getName(), "test");
}
use of com.navercorp.pinpoint.bootstrap.interceptor.scope.InterceptorScopeInvocation in project pinpoint by naver.
the class ThreadLocalScopePoolTest method testGetScope.
@Test
public void testGetScope() throws Exception {
ScopePool pool = new ThreadLocalScopePool();
InterceptorScopeInvocation scope = pool.getScope(new DefaultInterceptorScopeDefinition("test"));
Assert.assertTrue(scope instanceof ThreadLocalScope);
Assert.assertEquals("name", scope.getName(), "test");
}
use of com.navercorp.pinpoint.bootstrap.interceptor.scope.InterceptorScopeInvocation in project pinpoint by naver.
the class ThreadLocalScopePoolTest method testGetOrCreate.
@Test
public void testGetOrCreate() throws Exception {
ScopePool pool = new ThreadLocalScopePool();
InterceptorScopeInvocation scope = pool.getScope(new DefaultInterceptorScopeDefinition("test"));
scope.tryEnter(ExecutionPolicy.BOUNDARY);
scope.tryEnter(ExecutionPolicy.BOUNDARY);
Assert.assertNull(scope.getAttachment());
Assert.assertEquals(scope.getOrCreateAttachment(new AttachmentFactory() {
@Override
public Object createAttachment() {
return "test";
}
}), "test");
scope.canLeave(ExecutionPolicy.BOUNDARY);
Assert.assertEquals(scope.getAttachment(), "test");
Assert.assertTrue(scope.canLeave(ExecutionPolicy.BOUNDARY));
scope.leave(ExecutionPolicy.BOUNDARY);
Assert.assertEquals("name", scope.getName(), "test");
}
Aggregations