blob: 82b6061320597b2616531a25b043e4f9f38c7687 [file] [log] [blame]
Jonathan Hartaa380972014-04-03 10:24:46 -07001package net.onrc.onos.core.intent;
Toshio Koideeb2d9e52014-03-31 17:52:34 -07002
Jonathan Harta88fd242014-04-03 11:24:54 -07003import static org.junit.Assert.assertEquals;
Ray Milkey269ffb92014-04-03 14:43:30 -07004
Jonathan Hartaa380972014-04-03 10:24:46 -07005import net.onrc.onos.core.intent.ErrorIntent.ErrorType;
Toshio Koideeb2d9e52014-03-31 17:52:34 -07006
7import org.junit.After;
8import org.junit.Before;
9import org.junit.Test;
10
11/**
12 * Unit tests for the ErrorIntent class.
Ray Milkey269ffb92014-04-03 14:43:30 -070013 *
Toshio Koideeb2d9e52014-03-31 17:52:34 -070014 * @author Toshio Koide (t-koide@onlab.us)
15 */
16public class ErrorIntentTest {
17
18 @Before
19 public void setUp() throws Exception {
20 }
21
22 @After
23 public void tearDown() throws Exception {
24 }
25
26 /**
27 * Test the result of executing constructor of the ErrorIntent class.
28 * This test checks the fields of id, errorType, message and parentIntent.
29 */
30 @Test
31 public void testCreate() {
32 Intent parentIntent = new Intent("1");
33 ErrorIntent errorIntent = new ErrorIntent(ErrorType.PATH_NOT_FOUND, "path not found", parentIntent);
34
35 assertEquals("1", errorIntent.getId());
36 assertEquals(ErrorType.PATH_NOT_FOUND, errorIntent.errorType);
37 assertEquals("path not found", errorIntent.message);
38 assertEquals(parentIntent, errorIntent.parentIntent);
39 }
40}