blob: c15ecaeca466ce658e305c16ed7fad5bc08a02ac [file] [log] [blame]
Sho SHIMIZU892509a2015-02-24 14:44:31 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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
18import org.junit.After;
19import org.junit.Before;
20import org.junit.Test;
21import 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;
27import org.onosproject.net.Link;
28import org.onosproject.net.Path;
29import org.onosproject.net.flow.DefaultTrafficSelector;
30import org.onosproject.net.flow.DefaultTrafficTreatment;
31import org.onosproject.net.flow.TrafficSelector;
32import org.onosproject.net.flow.TrafficTreatment;
33import org.onosproject.net.intent.Intent;
34import org.onosproject.net.intent.IntentData;
35import org.onosproject.net.intent.MockIdGenerator;
36import org.onosproject.net.intent.PathIntent;
37import org.onosproject.net.intent.PointToPointIntent;
38import org.onosproject.net.intent.impl.IntentCompilationException;
39import 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
47import static org.easymock.EasyMock.createMock;
48import static org.easymock.EasyMock.expect;
49import static org.easymock.EasyMock.replay;
50import static org.easymock.EasyMock.verify;
51import static org.hamcrest.Matchers.instanceOf;
52import static org.hamcrest.Matchers.is;
53import static org.junit.Assert.assertThat;
54import static org.onosproject.net.DeviceId.deviceId;
55import static org.onosproject.net.Link.Type.DIRECT;
56import static org.onosproject.net.PortNumber.portNumber;
57import static org.onosproject.net.intent.IntentState.INSTALL_REQ;
58
59/**
60 * Unit tests for Compiling phase.
61 */
62public class CompilingTest {
63
64 private final ApplicationId appId = new TestApplicationId("test");
65 private final ProviderId pid = new ProviderId("of", "test");
Brian O'Connor6b528132015-03-10 16:39:52 -070066 private final TrafficSelector selector = DefaultTrafficSelector.emptySelector();
67 private final TrafficTreatment treatment = DefaultTrafficTreatment.emptyTreatment();
Sho SHIMIZU892509a2015-02-24 14:44:31 -080068 private final ConnectPoint cp1 = new ConnectPoint(deviceId("1"), portNumber(1));
69 private final ConnectPoint cp2 = new ConnectPoint(deviceId("1"), portNumber(2));
70 private final ConnectPoint cp3 = new ConnectPoint(deviceId("2"), portNumber(1));
71 private final ConnectPoint cp4 = new ConnectPoint(deviceId("2"), portNumber(2));
72
Sho SHIMIZU98ffca82015-05-11 08:39:24 -070073 private final List<Link> links = Collections.singletonList(new DefaultLink(pid, cp2, cp4, DIRECT));
Sho SHIMIZU892509a2015-02-24 14:44:31 -080074 private final Path path = new DefaultPath(pid, links, 10);
75
76 private PointToPointIntent input;
77 private PathIntent compiled;
78
79 private IdGenerator idGenerator;
80 private IntentProcessor processor;
81 private Timestamp version;
82
83 @Before
84 public void setUp() {
85 processor = createMock(IntentProcessor.class);
86 version = createMock(Timestamp.class);
87
88 idGenerator = new MockIdGenerator();
89
90 Intent.bindIdGenerator(idGenerator);
91
92 // Intent creation should be placed after binding an ID generator
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070093 input = PointToPointIntent.builder()
94 .appId(appId)
95 .selector(selector)
96 .treatment(treatment)
97 .ingressPoint(cp1)
98 .egressPoint(cp3)
99 .build();
Ray Milkeyebc5d222015-03-18 15:45:36 -0700100 compiled = PathIntent.builder()
101 .appId(appId)
102 .selector(selector)
103 .treatment(treatment)
104 .path(path)
105 .build();
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800106 }
107
108
109 @After
110 public void tearDown() {
111 Intent.unbindIdGenerator(idGenerator);
112 }
113
114 /**
115 * Tests a next phase when no exception occurs.
116 */
117 @Test
118 public void testMoveToNextPhaseWithoutError() {
119 IntentData pending = new IntentData(input, INSTALL_REQ, version);
120
Sho SHIMIZU98ffca82015-05-11 08:39:24 -0700121 expect(processor.compile(input, null)).andReturn(Collections.singletonList(compiled));
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800122 replay(processor);
123
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700124 Compiling sut = new Compiling(processor, pending, Optional.empty());
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800125
126 Optional<IntentProcessPhase> output = sut.execute();
127
128 verify(processor);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -0800129 assertThat(output.get(), is(instanceOf(Installing.class)));
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800130 }
131
132 /**
133 * Tests a next phase when IntentCompilationException occurs.
134 */
135 @Test
136 public void testWhenIntentCompilationExceptionOccurs() {
137 IntentData pending = new IntentData(input, INSTALL_REQ, version);
138
139 expect(processor.compile(input, null)).andThrow(new IntentCompilationException());
140 replay(processor);
141
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700142 Compiling sut = new Compiling(processor, pending, Optional.empty());
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800143
144 Optional<IntentProcessPhase> output = sut.execute();
145
146 verify(processor);
Brian O'Connorf0c5a052015-04-27 00:34:53 -0700147 assertThat(output.get(), is(instanceOf(Failed.class)));
Sho SHIMIZU892509a2015-02-24 14:44:31 -0800148 }
149}