Skip to content

test: Proto Column Integration tests #2212

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,355 @@
/*
* Copyright 2022 Google LLC
*
* 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.google.cloud.spanner.it;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThrows;
import static org.junit.Assume.assumeFalse;

import com.google.cloud.ByteArray;
import com.google.cloud.spanner.DatabaseClient;
import com.google.cloud.spanner.DatabaseId;
import com.google.cloud.spanner.Key;
import com.google.cloud.spanner.KeySet;
import com.google.cloud.spanner.Mutation;
import com.google.cloud.spanner.ParallelIntegrationTest;
import com.google.cloud.spanner.ResultSet;
import com.google.cloud.spanner.SingerProto.Genre;
import com.google.cloud.spanner.SingerProto.SingerInfo;
import com.google.cloud.spanner.Spanner;
import com.google.cloud.spanner.SpannerException;
import com.google.cloud.spanner.SpannerOptions;
import com.google.cloud.spanner.Statement;
import com.google.cloud.spanner.testing.EmulatorSpannerHelper;
import com.google.common.collect.ImmutableList;
import com.google.protobuf.AbstractMessage;
import com.google.protobuf.InvalidProtocolBufferException.InvalidWireTypeException;
import com.google.protobuf.ProtocolMessageEnum;
import com.google.spanner.admin.database.v1.Backup;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.junit.After;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;

/** Integrations Tests to test Proto Columns & Enums */
@Category(ParallelIntegrationTest.class)
@RunWith(JUnit4.class)
public class ITProtoColumnTest {
private static String projectId;
private static String instanceId;
private static String databaseId;
private static DatabaseClient databaseClient;

@BeforeClass
public static void beforeClass() throws Exception {
assumeFalse(
"Proto Column is not supported in the emulator", EmulatorSpannerHelper.isUsingEmulator());
// ToDo: Update project, instance and database parameter before GA
projectId = "span-cloud-testing";
databaseId = "int_test_proto_column_db";
instanceId = "integration-test-proto-column";

Spanner spanner =
SpannerOptions.newBuilder()
.setHost("https://staging-wrenchworks.sandbox.googleapis.com")
.setProjectId(projectId)
.build()
.getService();

databaseClient = spanner.getDatabaseClient(DatabaseId.of(projectId, instanceId, databaseId));
}

@After
public void after() throws Exception {
databaseClient.write(ImmutableList.of(Mutation.delete("Types", KeySet.all())));
databaseClient.write(ImmutableList.of(Mutation.delete("Singers", KeySet.all())));
}

/**
* Test to check updates and read queries on Proto column and Enums and their arrays. Test also
* checks for compatability between following types: 1. Proto Messages & Bytes 2. Proto Enums &
* Int64
*
* <p>Table `Types` was created through gcloud using following DDL:
* ************************************** CREATE TABLE Types ( RowID INT64 NOT NULL, Int64a INT64,
* Bytes BYTES(MAX), Int64Array ARRAY<INT64>, BytesArray ARRAY<BYTES(MAX)>, ProtoMessage
* spanner.examples.music.SingerInfo, ProtoEnum spanner.examples.music.Genre, ProtoMessageArray
* ARRAY<spanner.examples.music.SingerInfo>, ProtoEnumArray ARRAY<spanner.examples.music.Genre>, )
* PRIMARY KEY (RowID); **************************************
*/
@Test
public void testProtoUpdateAndRead() {
assumeFalse(
"Proto Column is not supported in the emulator", EmulatorSpannerHelper.isUsingEmulator());
SingerInfo singerInfo =
SingerInfo.newBuilder().setSingerId(11).setNationality("Country1").build();
ByteArray singerInfoBytes = ByteArray.copyFrom(singerInfo.toByteArray());

Genre genre = Genre.JAZZ;
long genreConst = genre.getNumber();

List<AbstractMessage> singerInfoList =
Arrays.asList(singerInfo, null, SingerInfo.getDefaultInstance());
List<ByteArray> singerInfoBytesList =
Arrays.asList(
singerInfoBytes,
null,
ByteArray.copyFrom(SingerInfo.getDefaultInstance().toByteArray()));

List<ProtocolMessageEnum> enumList = Arrays.asList(Genre.FOLK, null, Genre.ROCK);
List<Long> enumConstList =
Arrays.asList((long) Genre.FOLK_VALUE, null, (long) Genre.ROCK_VALUE);

// Inserting two rows with same data except rowID as it's used as PK.
databaseClient.write(
ImmutableList.of(
Mutation.newInsertOrUpdateBuilder("Types")
.set("RowID")
.to(11)
.set("Int64a")
.to(genreConst)
.set("Bytes")
.to(singerInfoBytes)
.set("Int64Array")
.toInt64Array(enumConstList)
.set("BytesArray")
.toBytesArray(singerInfoBytesList)
.set("ProtoMessage")
.to(singerInfo)
.set("ProtoEnum")
.to(genre)
.set("ProtoMessageArray")
.toProtoMessageArray(singerInfoList, SingerInfo.getDescriptor())
.set("ProtoEnumArray")
.toProtoEnumArray(enumList, Genre.getDescriptor())
.build(),
//Inter Compatability check between ProtoMessages/Bytes and Int64/Enum.
Mutation.newInsertOrUpdateBuilder("Types")
.set("RowID")
.to(12)
.set("Int64a")
.to(genre)
.set("Bytes")
.to(singerInfo)
.set("Int64Array")
.toProtoEnumArray(enumList, Genre.getDescriptor())
.set("BytesArray")
.toProtoMessageArray(singerInfoList, SingerInfo.getDescriptor())
.set("ProtoMessage")
.to(singerInfoBytes)
.set("ProtoEnum")
.to(genreConst)
.set("ProtoMessageArray")
.toBytesArray(singerInfoBytesList)
.set("ProtoEnumArray")
.toInt64Array(enumConstList)
.build()));

try (ResultSet resultSet =
databaseClient.singleUse().executeQuery(Statement.of("SELECT * FROM " + "Types"))) {

for(int i=0;i<2;i++) {
resultSet.next();
assertEquals(11 + i, resultSet.getLong("RowID"));
assertEquals(genreConst, resultSet.getLong("Int64a"));
assertEquals(singerInfoBytes, resultSet.getBytes("Bytes"));
assertEquals(enumConstList, resultSet.getLongList("Int64Array"));
assertEquals(singerInfoBytesList, resultSet.getBytesList("BytesArray"));
assertEquals(
singerInfo, resultSet.getProtoMessage("ProtoMessage", SingerInfo.getDefaultInstance()));
assertEquals(genre, resultSet.getProtoEnum("ProtoEnum", Genre::forNumber));
assertEquals(
singerInfoList,
resultSet.getProtoMessageList("ProtoMessageArray", SingerInfo.getDefaultInstance()));
assertEquals(enumList, resultSet.getProtoEnumList("ProtoEnumArray", Genre::forNumber));

// Check compatability between Proto Messages & Bytes
assertEquals(singerInfoBytes, resultSet.getBytes("ProtoMessage"));
assertEquals(singerInfo, resultSet.getProtoMessage("Bytes", SingerInfo.getDefaultInstance()));

assertEquals(singerInfoBytesList, resultSet.getBytesList("ProtoMessageArray"));
assertEquals(
singerInfoList,
resultSet.getProtoMessageList("BytesArray", SingerInfo.getDefaultInstance()));

// Check compatability between Proto Enum & Int64
assertEquals(genreConst, resultSet.getLong("ProtoEnum"));
assertEquals(genre, resultSet.getProtoEnum("Int64a", Genre::forNumber));

assertEquals(enumConstList, resultSet.getLongList("ProtoEnumArray"));
assertEquals(enumList, resultSet.getProtoEnumList("Int64Array", Genre::forNumber));
}
}
}

/**
* Test to check Parameterized Queries, Primary Keys and Indexes.
*
* <p>Table `Singers` and Index `SingerByNationalityAndGenre` for Proto column integration tests
* is created through gcloud using following DDL:
*
* <p>************************************** CREATE TABLE Singers ( SingerId INT64 NOT NULL,
* FirstName STRING(1024), LastName STRING(1024), SingerInfo spanner.examples.music.SingerInfo,
* SingerGenre spanner.examples.music.Genre, SingerNationality STRING(1024) AS
* (SingerInfo.nationality) STORED, ) PRIMARY KEY (SingerNationality, SingerGenre);
*
* <p>CREATE INDEX SingerByNationalityAndGenre ON Singers(SingerNationality, SingerGenre) STORING
* (SingerId, FirstName, LastName); **************************************
*/
@Test
public void testProtoColumnsDMLParameterizedQueriesAndPKIndexes() {
assumeFalse(
"Proto Column is not supported in the emulator", EmulatorSpannerHelper.isUsingEmulator());

SingerInfo singerInfo1 =
SingerInfo.newBuilder().setSingerId(11).setNationality("Country1").build();
Genre genre1 = Genre.FOLK;

SingerInfo singerInfo2 =
SingerInfo.newBuilder().setSingerId(11).setNationality("Country2").build();
Genre genre2 = Genre.JAZZ;

databaseClient
.readWriteTransaction()
.run(
transaction -> {
Statement statement1 =
Statement.newBuilder(
"INSERT INTO Singers (SingerId, FirstName, LastName, SingerInfo, SingerGenre) VALUES (11, \"FirstName1\", \"LastName1\", @singerInfo, @singerGenre)")
.bind("singerInfo")
.to(singerInfo1)
.bind("singerGenre")
.to(genre1)
.build();

Statement statement2 =
Statement.newBuilder(
"INSERT INTO Singers (SingerId, FirstName, LastName, SingerInfo, SingerGenre) VALUES (22, \"FirstName2\", \"LastName2\", @singerInfo, @singerGenre)")
.bind("singerInfo")
.to(singerInfo2)
.bind("singerGenre")
.to(genre2)
.build();

transaction.batchUpdate(Arrays.asList(statement1, statement2));
return null;
});

// Read all rows based on Proto Message field and Proto Enum Primary key column values
ResultSet resultSet1 =
databaseClient
.singleUse()
.read(
"Singers",
KeySet.newBuilder()
.addKey(Key.of("Country1", Genre.FOLK))
.addKey(Key.of("Country2", Genre.JAZZ))
.build(),
Arrays.asList("SingerId", "FirstName", "LastName", "SingerInfo", "SingerGenre"));

resultSet1.next();
assertEquals(11, resultSet1.getLong("SingerId"));
assertEquals("FirstName1", resultSet1.getString("FirstName"));
assertEquals("LastName1", resultSet1.getString("LastName"));
assertEquals(
singerInfo1, resultSet1.getProtoMessage("SingerInfo", SingerInfo.getDefaultInstance()));
assertEquals(genre1, resultSet1.getProtoEnum("SingerGenre", Genre::forNumber));

resultSet1.next();
assertEquals(22, resultSet1.getLong("SingerId"));
assertEquals("FirstName2", resultSet1.getString("FirstName"));
assertEquals("LastName2", resultSet1.getString("LastName"));
assertEquals(
singerInfo2, resultSet1.getProtoMessage("SingerInfo", SingerInfo.getDefaultInstance()));
assertEquals(genre2, resultSet1.getProtoEnum("SingerGenre", Genre::forNumber));

// Read rows using Index on Proto Message field and Proto Enum column
ResultSet resultSet2 =
databaseClient
.singleUse()
.readUsingIndex(
"Singers",
"SingerByNationalityAndGenre",
KeySet.singleKey(Key.of("Country2", Genre.JAZZ)),
Arrays.asList("SingerId", "FirstName", "LastName"));
resultSet2.next();
assertEquals(22, resultSet2.getLong("SingerId"));
assertEquals("FirstName2", resultSet2.getString("FirstName"));
assertEquals("LastName2", resultSet2.getString("LastName"));

// Filter using Parameterized DQL
ResultSet resultSet3 =
databaseClient
.singleUse()
.executeQuery(
Statement.newBuilder(
"SELECT SingerId, SingerInfo, SingerGenre FROM "
+ "Singers WHERE SingerInfo.Nationality=@country AND SingerGenre=@genre")
.bind("country")
.to("Country2")
.bind("genre")
.to(Genre.JAZZ)
.build());

resultSet3.next();
assertEquals(22, resultSet1.getLong("SingerId"));
assertEquals(
singerInfo2, resultSet1.getProtoMessage("SingerInfo", SingerInfo.getDefaultInstance()));
assertEquals(genre2, resultSet1.getProtoEnum("SingerGenre", Genre::forNumber));
}

/**
* Test the exception in case Invalid protocol message object is provided while deserializing the
* data.
*/
@Test
public void testProtoMessageDeserializationError() {
assumeFalse(
"Proto Column is not supported in the emulator", EmulatorSpannerHelper.isUsingEmulator());

SingerInfo singerInfo =
SingerInfo.newBuilder().setSingerId(11).setNationality("Country1").build();

databaseClient.write(
ImmutableList.of(
Mutation.newInsertOrUpdateBuilder("Types")
.set("RowID")
.to(11)
.set("ProtoMessage")
.to(singerInfo)
.build()));

ResultSet resultSet =
databaseClient
.singleUse()
.read("Types", KeySet.all(), Collections.singletonList("ProtoMessage"));
resultSet.next();

SpannerException e =
assertThrows(
SpannerException.class,
() -> resultSet.getProtoMessage("ProtoMessage", Backup.getDefaultInstance()));

// Underlying cause is InvalidWireTypeException
assertEquals(InvalidWireTypeException.class, e.getCause().getClass());
}
}