/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.md.sal.binding.impl.test; import static org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType.CONFIGURATION; import static org.opendaylight.controller.md.sal.test.model.util.ListsBindingUtils.TOP_BAR_KEY; import static org.opendaylight.controller.md.sal.test.model.util.ListsBindingUtils.TOP_FOO_KEY; import static org.opendaylight.controller.md.sal.test.model.util.ListsBindingUtils.top; import static org.opendaylight.controller.md.sal.test.model.util.ListsBindingUtils.topLevelList; import com.google.common.collect.ImmutableSet; import java.util.HashSet; import java.util.Objects; import java.util.Set; import java.util.function.Function; import java.util.stream.Collectors; import org.junit.Before; import org.junit.Test; import org.opendaylight.controller.md.sal.binding.api.DataObjectModification.ModificationType; import org.opendaylight.controller.md.sal.binding.api.DataTreeModification; import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction; import org.opendaylight.controller.md.sal.binding.api.WriteTransaction; import org.opendaylight.controller.md.sal.binding.test.AbstractDataTreeChangeListenerTest; import org.opendaylight.mdsal.binding.spec.reflect.BindingReflections; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.Top; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.two.level.list.TopLevelList; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.two.level.list.TopLevelListBuilder; import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; import org.opendaylight.yangtools.yang.binding.YangModuleInfo; /** * This testsuite tests explanation for data change scope and data modifications * which were described in * https://lists.opendaylight.org/pipermail/controller-dev/2014-July/005541.html. */ @Deprecated public class ListInsertionDataChangeListenerTest extends AbstractDataTreeChangeListenerTest { private static final InstanceIdentifier TOP = InstanceIdentifier.create(Top.class); private static final InstanceIdentifier WILDCARDED = TOP.child(TopLevelList.class); private static final InstanceIdentifier TOP_FOO = TOP.child(TopLevelList.class, TOP_FOO_KEY); private static final InstanceIdentifier TOP_BAR = TOP.child(TopLevelList.class, TOP_BAR_KEY); @Override protected Set getModuleInfos() throws Exception { return ImmutableSet.of(BindingReflections.getModuleInfo(Top.class)); } @Before public void setupWithDataBroker() { WriteTransaction initialTx = getDataBroker().newWriteOnlyTransaction(); initialTx.put(CONFIGURATION, TOP, top(topLevelList(TOP_FOO_KEY))); assertCommit(initialTx.submit()); } @Test public void replaceTopNodeSubtreeListeners() { final TopLevelList topBar = topLevelList(TOP_BAR_KEY); final Top top = top(topBar); final TopLevelList topFoo = topLevelList(TOP_FOO_KEY); // Listener for TOP element final TestListener topListener = createListener(CONFIGURATION, TOP, added(TOP, top(topLevelList(TOP_FOO_KEY))), replaced(TOP, top(topFoo), top)); // Listener for all list items. This one should see Foo item deleted and Bar item added. final TestListener allListener = createListener(CONFIGURATION, WILDCARDED, added(TOP_FOO, topFoo), added(TOP_BAR, topBar), deleted(TOP_FOO, topFoo)); // Listener for all Foo item. This one should see only Foo item deleted. final TestListener fooListener = createListener(CONFIGURATION, TOP_FOO, added(TOP_FOO, topFoo), deleted(TOP_FOO, topFoo)); // Listener for bar list items. final TestListener barListener = createListener(CONFIGURATION, TOP_BAR, added(TOP_BAR, topBar)); ReadWriteTransaction writeTx = getDataBroker().newReadWriteTransaction(); writeTx.put(CONFIGURATION, TOP, top); assertCommit(writeTx.submit()); topListener.verify(); allListener.verify(); fooListener.verify(); barListener.verify(); } @Test public void mergeTopNodeSubtreeListeners() { final TopLevelList topBar = topLevelList(TOP_BAR_KEY); final TopLevelList topFoo = topLevelList(TOP_FOO_KEY); final TestListener topListener = createListener(CONFIGURATION, TOP, added(TOP, top(topLevelList(TOP_FOO_KEY))), topSubtreeModified(topFoo, topBar)); final TestListener allListener = createListener(CONFIGURATION, WILDCARDED, added(TOP_FOO, topFoo), added(TOP_BAR, topBar)); final TestListener fooListener = createListener(CONFIGURATION, TOP_FOO, added(TOP_FOO, topFoo)); final TestListener barListener = createListener(CONFIGURATION, TOP_BAR, added(TOP_BAR, topBar)); ReadWriteTransaction writeTx = getDataBroker().newReadWriteTransaction(); writeTx.merge(CONFIGURATION, TOP, top(topLevelList(TOP_BAR_KEY))); assertCommit(writeTx.submit()); topListener.verify(); allListener.verify(); fooListener.verify(); barListener.verify(); } @Test public void putTopBarNodeSubtreeListeners() { final TopLevelList topBar = topLevelList(TOP_BAR_KEY); final TopLevelList topFoo = topLevelList(TOP_FOO_KEY); final TestListener topListener = createListener(CONFIGURATION, TOP, added(TOP, top(topLevelList(TOP_FOO_KEY))), topSubtreeModified(topFoo, topBar)); final TestListener allListener = createListener(CONFIGURATION, WILDCARDED, added(TOP_FOO, topFoo), added(TOP_BAR, topBar)); final TestListener fooListener = createListener(CONFIGURATION, TOP_FOO, added(TOP_FOO, topFoo)); final TestListener barListener = createListener(CONFIGURATION, TOP_BAR, added(TOP_BAR, topBar)); ReadWriteTransaction writeTx = getDataBroker().newReadWriteTransaction(); writeTx.put(CONFIGURATION, TOP_BAR, topLevelList(TOP_BAR_KEY)); assertCommit(writeTx.submit()); topListener.verify(); allListener.verify(); fooListener.verify(); barListener.verify(); } @Test public void mergeTopBarNodeSubtreeListeners() { final TopLevelList topBar = topLevelList(TOP_BAR_KEY); final TopLevelList topFoo = topLevelList(TOP_FOO_KEY); final TestListener topListener = createListener(CONFIGURATION, TOP, added(TOP, top(topLevelList(TOP_FOO_KEY))), topSubtreeModified(topFoo, topBar)); final TestListener allListener = createListener(CONFIGURATION, WILDCARDED, added(TOP_FOO, topFoo), added(TOP_BAR, topBar)); final TestListener fooListener = createListener(CONFIGURATION, TOP_FOO, added(TOP_FOO, topFoo)); final TestListener barListener = createListener(CONFIGURATION, TOP_BAR, added(TOP_BAR, topBar)); ReadWriteTransaction writeTx = getDataBroker().newReadWriteTransaction(); writeTx.merge(CONFIGURATION, TOP_BAR, topLevelList(TOP_BAR_KEY)); assertCommit(writeTx.submit()); topListener.verify(); allListener.verify(); fooListener.verify(); barListener.verify(); } private static Function, Boolean> topSubtreeModified(final TopLevelList topFoo, final TopLevelList topBar) { return match(ModificationType.SUBTREE_MODIFIED, TOP, (Function) dataBefore -> Objects.equals(top(topFoo), dataBefore), dataAfter -> { Set expList = new HashSet<>(top(topBar, topFoo).getTopLevelList()); Set actualList = dataAfter.getTopLevelList().stream() .map(list -> new TopLevelListBuilder(list).build()).collect(Collectors.toSet()); return expList.equals(actualList); }); } }