/* * Copyright (c) 2002-2017 "Neo Technology," * Network Engine for Objects in Lund AB [http://neotechnology.com] * * This file is part of Neo4j. * * 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 org.neo4j.driver.internal; import org.junit.Test; import java.net.URI; import org.neo4j.driver.internal.net.BoltServerAddress; import org.neo4j.driver.internal.summary.InternalServerInfo; import org.neo4j.driver.internal.summary.InternalSummaryCounters; import org.neo4j.driver.internal.summary.SummaryBuilder; import org.neo4j.driver.v1.summary.ResultSummary; import org.neo4j.driver.v1.Statement; import org.neo4j.driver.v1.summary.ServerInfo; import org.neo4j.driver.v1.summary.SummaryCounters; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNull; import static org.mockito.Mockito.mock; public class InternalBuilderTest { @Test public void shouldReturnEmptyStatisticsIfNotProvided() throws Throwable { // Given SummaryBuilder builder = new SummaryBuilder( mock( Statement.class ), mock( ServerInfo.class ) ); // When ResultSummary summary = builder.build(); SummaryCounters stats = summary.counters(); // Then assertEquals( stats, new InternalSummaryCounters( 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ) ); } @Test public void shouldReturnNullIfNoPlanProfileProvided() throws Throwable { // Given SummaryBuilder builder = new SummaryBuilder( mock( Statement.class ), mock( ServerInfo.class ) ); // When ResultSummary summary = builder.build(); // Then assertThat( summary.hasPlan(), equalTo( false ) ); assertThat( summary.hasProfile(), equalTo( false ) ); assertNull( summary.plan() ); assertNull( summary.profile() ); } @Test public void shouldReturnNullIfNoStatementTypeProvided() throws Throwable { // Given SummaryBuilder builder = new SummaryBuilder( mock( Statement.class ), mock( ServerInfo.class ) ); // When ResultSummary summary = builder.build(); // Then assertNull( summary.statementType() ); } @Test public void shouldObtainStatementAndServerInfoFromSummaryBuilder() throws Throwable { // Given SummaryBuilder builder = new SummaryBuilder( new Statement( "This is a test statement"), new InternalServerInfo( BoltServerAddress.from( URI.create( "http://neo4j.com" ) ), "super-awesome" ) ); // When ResultSummary summary = builder.build(); // Then assertThat( summary.statement().text(), equalTo( "This is a test statement" ) ); assertThat( summary.server().address(), equalTo( "neo4j.com:7687" ) ); assertThat( summary.server().version(), equalTo( "super-awesome" ) ); } }