/* * 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://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.jena.hadoop.rdf.io.input.compressed.jsonld; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.compress.CompressionCodec; import org.apache.hadoop.mapreduce.InputFormat; import org.apache.jena.hadoop.rdf.io.input.compressed.AbstractCompressedWholeFileQuadInputFormatTests; import org.apache.jena.hadoop.rdf.io.input.jsonld.JsonLDQuadInputFormat; import org.apache.jena.hadoop.rdf.types.QuadWritable; import org.apache.jena.riot.Lang; /** * Abstract compressed JSON-LD input tests * * * */ public abstract class AbstractCompressedJsonLDQuadInputFormatTests extends AbstractCompressedWholeFileQuadInputFormatTests { private String ext; private CompressionCodec codec; /** * Creates new tests * * @param ext * File extension * @param codec * Compression codec */ public AbstractCompressedJsonLDQuadInputFormatTests(String ext, CompressionCodec codec) { this.ext = ext; this.codec = codec; } @Override protected final String getFileExtension() { return this.ext; } @Override protected final CompressionCodec getCompressionCodec() { return this.codec; } @Override protected final Lang getRdfLanguage() { return Lang.JSONLD; } @Override protected final InputFormat<LongWritable, QuadWritable> getInputFormat() { return new JsonLDQuadInputFormat(); } /** JSON_LD does not produce any quads from a bad document (no partial streaming). * @see #single_input_05() */ @Override protected int single_input_05_expected() { return 0 ; } /** JSON_LD does not produce any quads from a bad document (no partial streaming). * @see #multiple_inputs_02() */ @Override protected int multiple_inputs_02_expected() { return EMPTY_SIZE + SMALL_SIZE + LARGE_SIZE ; } }