Skip to content

Commit

Permalink
[FLINK-13632] Port PrimitiveArraySerializer test to TypeSerializerUpg…
Browse files Browse the repository at this point in the history
…radeTestBase
  • Loading branch information
klion26 authored and aljoscha committed May 28, 2020
1 parent eb64bb8 commit 9f989b2
Show file tree
Hide file tree
Showing 35 changed files with 533 additions and 94 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
/*
* 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:https://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.flink.api.common.typeutils.base.array;

import org.apache.flink.api.common.typeutils.TypeSerializerUpgradeTestBase;
import org.apache.flink.testutils.migration.MigrationVersion;

import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import java.util.ArrayList;
import java.util.Collection;

/**
* Migration tests for primitive array type serializers' snapshots.
*/
@RunWith(Parameterized.class)
public class PrimitiveArraySerializerUpgradeTest extends TypeSerializerUpgradeTestBase<Object, Object> {
public PrimitiveArraySerializerUpgradeTest(TestSpecification<Object, Object> testSpecification) {
super(testSpecification);
}

@Parameterized.Parameters(name = "Test Specification = {0}")
public static Collection<TestSpecification<?, ?>> testSpecifications() throws Exception {
ArrayList<TestSpecification<?, ?>> testSpecifications = new ArrayList<>();
for (MigrationVersion migrationVersion : MIGRATION_VERSIONS) {
testSpecifications.add(
new TestSpecification<>(
"boolean-primitive-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveBooleanArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveBooleanArrayVerifier.class));
testSpecifications.add(
new TestSpecification<>(
"byte-primitive-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveByteArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveByteArrayVerifier.class));
testSpecifications.add(
new TestSpecification<>(
"char-primitive-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveCharArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveCharArrayVerifier.class));
testSpecifications.add(
new TestSpecification<>(
"double-primitive-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveDoubleArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveDoubleArrayVerifier.class));
testSpecifications.add(
new TestSpecification<>(
"float-primitive-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveFloatArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveFloatArrayVerifier.class));
testSpecifications.add(
new TestSpecification<>(
"int-primitive-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveIntArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveIntArrayVerifier.class));
testSpecifications.add(
new TestSpecification<>(
"long-primitive-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveLongArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveLongArrayVerifier.class));
testSpecifications.add(
new TestSpecification<>(
"short-primitive-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveShortArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveShortArrayVerifier.class));
testSpecifications.add(
new TestSpecification<>(
"string-array-serializer",
migrationVersion,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveStringArraySetup.class,
PrimitiveArraySerializerUpgradeTestSpecifications.PrimitiveStringArrayVerifier.class));
}

return testSpecifications;
}
}

Loading

0 comments on commit 9f989b2

Please sign in to comment.