/* Copyright 2020 The OpenTracing Authors * * 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 io.opentracing.contrib.specialagent.test.spring.data; import javax.sql.DataSource; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder; import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType; import io.opentracing.contrib.specialagent.TestUtil; import io.opentracing.contrib.specialagent.TestUtil.ComponentSpanCount; @SpringBootApplication public class SpringDataITest { @Bean public DataSource dataSource() { final EmbeddedDatabaseBuilder builder = new EmbeddedDatabaseBuilder(); return builder.setType(EmbeddedDatabaseType.H2).build(); } public static void main(final String[] args) { try (final ConfigurableApplicationContext context = SpringApplication.run(SpringDataITest.class, args)) { final UserRepository userRepository = context.getBean(UserRepository.class); userRepository.save(new User()); userRepository.findAll(); TestUtil.checkSpan(new ComponentSpanCount("java-jdbc", 5)); } } }