blob: a4c5674ac18aa3b1ed2a53ba73a84e3a59f74507 [file] [log] [blame]
Sho SHIMIZU892509a2015-02-24 14:44:31 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Sho SHIMIZU892509a2015-02-24 14:44:31 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.net.intent.impl.phase;
17
Sho SHIMIZU892509a2015-02-24 14:44:31 -080018import org.junit.Before;
19import org.junit.Test;
Ray Milkeya7cf8c82018-02-08 15:07:06 -080020import org.onlab.graph.ScalarWeight;
Sho SHIMIZU892509a2015-02-24 14:44:31 -080021import org.onosproject.TestApplicationId;
22import org.onosproject.core.ApplicationId;
23import org.onosproject.core.IdGenerator;
24import org.onosproject.net.ConnectPoint;
25import org.onosproject.net.DefaultLink;
26import org.onosproject.net.DefaultPath;
Ray Milkeya2cf3a12018-02-15 16:13:56 -080027import org.onosproject.net.FilteredConnectPoint;
Sho SHIMIZU892509a2015-02-24 14:44:31 -080028import org.onosproject.net.Link;
29import org.onosproject.net.Path;
30import org.onosproject.net.flow.DefaultTrafficSelector;
31import org.onosproject.net.flow.DefaultTrafficTreatment;
32import org.onosproject.net.flow.TrafficSelector;
33import org.onosproject.net.flow.TrafficTreatment;
Thomas Vachuska2048c1f2017-05-10 19:32:22 -070034import org.onosproject.net.intent.AbstractIntentTest;
Yuta HIGUCHId95d5902016-06-27 00:18:45 -070035import org.onosproject.net.intent.IntentCompilationException;
Sho SHIMIZU892509a2015-02-24 14:44:31 -080036import org.onosproject.net.intent.IntentData;
Sho SHIMIZU892509a2015-02-24 14:44:31 -080037import org.onosproject.net.intent.PathIntent;
38import org.onosproject.net.intent.PointToPointIntent;
Sho SHIMIZU892509a2015-02-24 14:44:31 -080039import org.onosproject.net.intent.impl.IntentProcessor;
40import org.onosproject.net.provider.ProviderId;
41import org.onosproject.store.Timestamp;
42
Sho SHIMIZU98ffca82015-05-11 08:39:24 -070043import java.util.Collections;
Sho SHIMIZU892509a2015-02-24 14:44:31 -080044import java.util.List;
45import java.util.Optional;
46
Thomas Vachuska2048c1f2017-05-10 19:32:22 -070047import static org.easymock.EasyMock.*;
Sho SHIMIZU892509a2015-02-24 14:44:31 -080048import static org.hamcrest.Matchers.instanceOf;
49import static org.hamcrest.Matchers.is;
50import static org.junit.Assert.assertThat;
51import static org.onosproject.net.DeviceId.deviceId;
52import static org.onosproject.net.Link.Type.DIRECT;
53import static org.onosproject.net.PortNumber.portNumber;
54import static org.onosproject.net.intent.IntentState.INSTALL_REQ;
55
56/**
57 * Unit tests for Compiling phase.
58 */
Thomas Vachuska2048c1f2017-05-10 19:32:22 -070059public class CompilingTest extends AbstractIntentTest {
Sho SHIMIZU892509a2015-02-24 14:44:31 -080060
61 private final ApplicationId appId = new TestApplicationId("test");
62 private final ProviderId pid = new ProviderId("of", "test");
Brian O'Connor6b528132015-03-10 16:39:52 -070063 private final TrafficSelector selector = DefaultTrafficSelector.emptySelector();
64 private final TrafficTreatment treatment = DefaultTrafficTreatment.emptyTreatment();
Sho SHIMIZU892509a2015-02-24 14:44:31 -080065 private final ConnectPoint cp1 = new ConnectPoint(deviceId("1"), portNumber(1));
66 private final ConnectPoint cp2 = new ConnectPoint(deviceId("1"), portNumber(2));
67 private final ConnectPoint cp3 = new ConnectPoint(deviceId("2"), portNumber(1));
68 private final ConnectPoint cp4 = new ConnectPoint(deviceId("2"), portNumber(2));
69
Ray Milkey2693bda2016-01-22 16:08:14 -080070 private final List<Link> links = Collections.singletonList(
71 DefaultLink.builder().providerId(pid).src(cp2).dst(cp4).type(DIRECT).build());
Ray Milkeya7cf8c82018-02-08 15:07:06 -080072 private final Path path = new DefaultPath(pid, links, ScalarWeight.toWeight(10));
Sho SHIMIZU892509a2015-02-24 14:44:31 -080073
74 private PointToPointIntent input;
75 private PathIntent compiled;
76
77 private IdGenerator idGenerator;
78 private IntentProcessor processor;
79 private Timestamp version;
80
81 @Before
82 public void setUp() {
Thomas Vachuska2048c1f2017-05-10 19:32:22 -070083 super.setUp();
84
Sho SHIMIZU892509a2015-02-24 14:44:31 -080085 processor = createMock(IntentProcessor.class);
86 version = createMock(Timestamp.class);
87
Sho SHIMIZU892509a2015-02-24 14:44:31 -080088 // Intent creation should be placed after binding an ID generator
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070089 input = PointToPointIntent.builder()
90 .appId(appId)
91 .selector(selector)
92 .treatment(treatment)
Ray Milkeya2cf3a12018-02-15 16:13:56 -080093 .filteredIngressPoint(new FilteredConnectPoint(cp1))
94 .filteredEgressPoint(new FilteredConnectPoint(cp3))
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070095 .build();
Ray Milkeyebc5d222015-03-18 15:45:36 -070096 compiled = PathIntent.builder()
97 .appId(appId)
98 .selector(selector)
99 .treatment(treatment)
100 .path(path)
101 .build();
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800102 }
103
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800104 /**
105 * Tests a next phase when no exception occurs.
106 */
107 @Test
108 public void testMoveToNextPhaseWithoutError() {
109 IntentData pending = new IntentData(input, INSTALL_REQ, version);
110
Sho SHIMIZU98ffca82015-05-11 08:39:24 -0700111 expect(processor.compile(input, null)).andReturn(Collections.singletonList(compiled));
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800112 replay(processor);
113
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700114 Compiling sut = new Compiling(processor, pending, Optional.empty());
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800115
116 Optional<IntentProcessPhase> output = sut.execute();
117
118 verify(processor);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -0800119 assertThat(output.get(), is(instanceOf(Installing.class)));
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800120 }
121
122 /**
123 * Tests a next phase when IntentCompilationException occurs.
124 */
125 @Test
126 public void testWhenIntentCompilationExceptionOccurs() {
127 IntentData pending = new IntentData(input, INSTALL_REQ, version);
128
129 expect(processor.compile(input, null)).andThrow(new IntentCompilationException());
130 replay(processor);
131
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700132 Compiling sut = new Compiling(processor, pending, Optional.empty());
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800133
134 Optional<IntentProcessPhase> output = sut.execute();
135
136 verify(processor);
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700137 assertThat(output.get(), is(instanceOf(Failed.class)));
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800138 }
139}