blob: 17302f1d13fd0d0632923e6e4b68770854136b21 [file] [log] [blame]
/*
* Copyright 2016 Open Networking Laboratory
*
* 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.onosproject.ui.impl.topo;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.onosproject.net.region.DefaultRegion;
import org.onosproject.net.region.Region;
import org.onosproject.net.region.RegionId;
import org.onosproject.store.service.TestStorageService;
import org.onosproject.ui.UiTopoLayoutService;
import org.onosproject.ui.model.topo.UiTopoLayout;
import org.onosproject.ui.model.topo.UiTopoLayoutId;
import static org.junit.Assert.*;
/**
* Suite of unit tests for the UI topology layout manager.
*/
public class UiTopoLayoutManagerTest {
private UiTopoLayoutService svc;
private UiTopoLayoutManager mgr;
private static final UiTopoLayout L1 =
new UiTopoLayout(UiTopoLayoutId.layoutId("l1"),
new DefaultRegion(RegionId.regionId("r1"), "R1",
Region.Type.CAMPUS, null), null);
private static final UiTopoLayout L2 =
new UiTopoLayout(UiTopoLayoutId.layoutId("l2"),
new DefaultRegion(RegionId.regionId("r2"), "R2",
Region.Type.CAMPUS, null), null);
@Before
public void setUp() {
mgr = new UiTopoLayoutManager();
svc = mgr;
mgr.storageService = new TestStorageService();
mgr.activate();
}
@After
public void tearDown() {
mgr.deactivate();
mgr.storageService = null;
}
@Test
public void basics() {
assertEquals("should be just default layout", 1, svc.getLayouts().size());
svc.addLayout(L1);
svc.addLayout(L2);
assertEquals("incorrect number of layouts", 3, svc.getLayouts().size());
assertEquals("incorrect layout", L1.id(), svc.getLayout(L1.id()).id());
assertEquals("incorrect layout", L2.id(), svc.getLayout(L2.id()).id());
svc.removeLayout(L1);
assertEquals("incorrect number of layouts", 2, svc.getLayouts().size());
assertNull("layout should be gone", svc.getLayout(L1.id()));
assertEquals("incorrect layout", L2.id(), svc.getLayout(L2.id()).id());
}
}