All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.curioswitch.common.testing.assertj.proto.FieldScopeImpl Maven / Gradle / Ivy

There is a newer version: 0.2.1
Show newest version
/*
 * MIT License
 *
 * Copyright (c) 2018 Choko ([email protected])
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
/*
 * Copyright (c) 2016 Google, Inc.
 *
 * 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.curioswitch.common.testing.assertj.proto;

import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.collect.Lists.asList;
import static org.curioswitch.common.testing.assertj.proto.FieldScopeUtil.asList;
import static org.curioswitch.common.testing.assertj.proto.FieldScopeUtil.join;

import com.google.auto.value.AutoValue;
import com.google.common.base.Function;
import com.google.common.base.Functions;
import com.google.common.base.Optional;
import com.google.common.collect.Lists;
import com.google.protobuf.Descriptors.Descriptor;
import com.google.protobuf.Descriptors.FieldDescriptor;
import com.google.protobuf.Message;
import java.util.List;

/**
 * Implementation of a {@link FieldScope}. It takes a logic component {@link FieldScopeLogic}, and
 * combines it with a human-readable string for use in test failures.
 *
 * 

{@link FieldScopeLogic} objects may be reused, cached, or otherwise implement particular * efficiencies, whereas the human-readable strings are ad-hoc and may be different for otherwise * identical logical implementations. For this reason, and to ensure every {@link FieldScope} gets * an appropriate testing string, we separate the logic components from the public interface. */ @AutoValue abstract class FieldScopeImpl extends FieldScope { ////////////////////////////////////////////////////////////////////////////////////////////////// // AutoValue methods. ////////////////////////////////////////////////////////////////////////////////////////////////// private static FieldScope create( FieldScopeLogic logic, Function, String> usingCorrespondenceStringFunction) { return new AutoValue_FieldScopeImpl(logic, usingCorrespondenceStringFunction); } @Override abstract FieldScopeLogic logic(); abstract Function, String> usingCorrespondenceStringFunction(); ////////////////////////////////////////////////////////////////////////////////////////////////// // Instantiation methods. ////////////////////////////////////////////////////////////////////////////////////////////////// static FieldScope createFromSetFields(Message message) { return create( FieldScopeLogic.partialScope(message), Functions.constant(String.format("FieldScopes.fromSetFields({%s})", message.toString()))); } static FieldScope createFromSetFields(Iterable messages) { if (emptyOrAllNull(messages)) { return create( FieldScopeLogic.none(), Functions.constant(String.format("FieldScopes.fromSetFields(%s)", messages.toString()))); } Optional optDescriptor = FieldScopeUtil.getSingleDescriptor(messages); checkArgument( optDescriptor.isPresent(), "Cannot create scope from messages with different descriptors: %s", getDescriptors(messages)); Message.Builder builder = null; for (Message message : messages) { if (message == null) { continue; } if (builder != null) { builder.mergeFrom(message); } else { builder = message.toBuilder(); } } Message aggregateMessage = builder.build(); return create( FieldScopeLogic.partialScope(aggregateMessage), Functions.constant(String.format("FieldScopes.fromSetFields(%s)", formatList(messages)))); } static FieldScope createIgnoringFields(Iterable fieldNumbers) { return create( FieldScopeLogic.all().ignoringFields(fieldNumbers), FieldScopeUtil.fieldNumbersFunction("FieldScopes.ignoringFields(%s)", fieldNumbers)); } static FieldScope createIgnoringFieldDescriptors(Iterable fieldDescriptors) { return create( FieldScopeLogic.all().ignoringFieldDescriptors(fieldDescriptors), Functions.constant( String.format("FieldScopes.ignoringFieldDescriptors(%s)", join(fieldDescriptors)))); } static FieldScope createAllowingFields(Iterable fieldNumbers) { return create( FieldScopeLogic.none().allowingFields(fieldNumbers), FieldScopeUtil.fieldNumbersFunction("FieldScopes.allowingFields(%s)", fieldNumbers)); } static FieldScope createAllowingFieldDescriptors(Iterable fieldDescriptors) { return create( FieldScopeLogic.none().allowingFieldDescriptors(fieldDescriptors), Functions.constant( String.format("FieldScopes.allowingFieldDescriptors(%s)", join(fieldDescriptors)))); } private static final FieldScope ALL = create(FieldScopeLogic.all(), Functions.constant("FieldScopes.all()")); private static final FieldScope NONE = create(FieldScopeLogic.none(), Functions.constant("FieldScopes.none()")); static FieldScope all() { return ALL; } static FieldScope none() { return NONE; } private static boolean emptyOrAllNull(Iterable objects) { for (Object object : objects) { if (object != null) { return false; } } return true; } ////////////////////////////////////////////////////////////////////////////////////////////////// // Delegation methods. ////////////////////////////////////////////////////////////////////////////////////////////////// @Override String usingCorrespondenceString(Optional descriptor) { return usingCorrespondenceStringFunction().apply(descriptor); } @Override public final FieldScope ignoringFields(int firstFieldNumber, int... rest) { return ignoringFields(asList(firstFieldNumber, rest)); } @Override public final FieldScope ignoringFields(Iterable fieldNumbers) { return create( logic().ignoringFields(fieldNumbers), addUsingCorrespondenceFieldNumbersString(".ignoringFields(%s)", fieldNumbers)); } @Override public final FieldScope ignoringFieldDescriptors( FieldDescriptor firstFieldDescriptor, FieldDescriptor... rest) { return ignoringFieldDescriptors(asList(firstFieldDescriptor, rest)); } @Override public final FieldScope ignoringFieldDescriptors(Iterable fieldDescriptors) { return create( logic().ignoringFieldDescriptors(fieldDescriptors), addUsingCorrespondenceFieldDescriptorsString( ".ignoringFieldDesciptors(%s)", fieldDescriptors)); } @Override public final FieldScope allowingFields(int firstFieldNumber, int... rest) { return allowingFields(asList(firstFieldNumber, rest)); } @Override public final FieldScope allowingFields(Iterable fieldNumbers) { return create( logic().allowingFields(fieldNumbers), addUsingCorrespondenceFieldNumbersString(".allowingFields(%s)", fieldNumbers)); } @Override public final FieldScope allowingFieldDescriptors( FieldDescriptor firstFieldDescriptor, FieldDescriptor... rest) { return allowingFieldDescriptors(asList(firstFieldDescriptor, rest)); } @Override public final FieldScope allowingFieldDescriptors(Iterable fieldDescriptors) { return create( logic().allowingFieldDescriptors(fieldDescriptors), addUsingCorrespondenceFieldDescriptorsString( ".allowingFieldDescriptors(%s)", fieldDescriptors)); } private Function, String> addUsingCorrespondenceFieldNumbersString( String fmt, Iterable fieldNumbers) { return FieldScopeUtil.concat( usingCorrespondenceStringFunction(), FieldScopeUtil.fieldNumbersFunction(fmt, fieldNumbers)); } private Function, String> addUsingCorrespondenceFieldDescriptorsString( String fmt, Iterable fieldDescriptors) { return FieldScopeUtil.concat( usingCorrespondenceStringFunction(), Functions.constant(String.format(fmt, join(fieldDescriptors)))); } private static Iterable getDescriptors(Iterable messages) { List descriptors = Lists.newArrayList(); for (Message message : messages) { descriptors.add(message == null ? "null" : message.getDescriptorForType().getFullName()); } return descriptors; } private static String formatList(Iterable messages) { List strings = Lists.newArrayList(); for (Message message : messages) { strings.add(message == null ? "null" : "{" + message + "}"); } return "[" + join(strings) + "]"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy