blob: b6c5f887e80dee2f50099582b7e4aac48b826846 [file] [log] [blame]
// Copyright 2019 The Feed Authors.
//
// 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.android.libraries.feed.testing.modelprovider;
import com.google.android.libraries.feed.api.common.MutationContext;
import com.google.android.libraries.feed.api.internal.modelprovider.ModelMutation;
import com.google.search.now.feed.client.StreamDataProto.StreamStructure;
import java.util.ArrayList;
import java.util.List;
/** Fake ModelMutation for tests. */
public final class FakeModelMutation implements ModelMutation {
public final List<StreamStructure> addedChildren = new ArrayList<>();
public final List<StreamStructure> removedChildren = new ArrayList<>();
public final List<StreamStructure> updateChildren = new ArrayList<>();
public MutationContext mutationContext;
boolean commitCalled = false;
@Override
public ModelMutation addChild(StreamStructure streamStructure) {
addedChildren.add(streamStructure);
return this;
}
@Override
public ModelMutation removeChild(StreamStructure streamStructure) {
removedChildren.add(streamStructure);
return this;
}
@Override
public ModelMutation updateChild(StreamStructure streamStructure) {
updateChildren.add(streamStructure);
return this;
}
@Override
public ModelMutation setMutationContext(MutationContext mutationContext) {
this.mutationContext = mutationContext;
return this;
}
@Override
public ModelMutation setSessionId(String sessionId) {
return this;
}
@Override
public ModelMutation hasCachedBindings(boolean cachedBindings) {
return this;
}
@Override
public void commit() {
commitCalled = true;
}
/** Clears the commit. */
public FakeModelMutation clearCommit() {
commitCalled = false;
addedChildren.clear();
removedChildren.clear();
updateChildren.clear();
return this;
}
/** Returns whether this mutation was committed. */
public boolean isCommitted() {
return commitCalled;
}
}