aboutsummaryrefslogtreecommitdiffstats
path: root/sli/common/src/test/java/org/onap/ccsdk/sli/core/sli/ErrorLoggerTest.java
blob: d95ff3075fd0ed73f41905f25084798319fd5c4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package org.onap.ccsdk.sli.core.sli;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class ErrorLoggerTest {
	private Logger log = LoggerFactory.getLogger(ErrorLoggerTest.class);

	@Test
	public void testOverloads() throws Exception {
		ErrorLogger e = new ErrorLogger();
		Exception exc = new Exception();
		e.logError("failure", 200);
		e.logError("failure", 200, exc);
		e.logError("failure", 200, "Timeout during HTTP operation");
		e.logError("failure", 200, "Timeout during HTTP operation", exc);
	}

	@Test
	public void testInvalidErrorCode() throws Exception {
		ErrorLogger e = new ErrorLogger();
		e.logError("failure", 0);
	}

	@Test
	public void testDescriptionMapping() throws Exception {
		ErrorLogger e = new ErrorLogger();
		e.logError("failure", 100);
		e.logError("failure", 200);
		e.logError("failure", 300);
		e.logError("failure", 400);
		e.logError("failure", 500);
		e.logError("failure", 900);
	}

	@Test
	public void testIsValidCode() throws Exception {
		ErrorLogger e = new ErrorLogger(log);
		assertTrue(e.isValidCode(ErrorLogger.ERROR_CODE_100));
		assertTrue(e.isValidCode(ErrorLogger.ERROR_CODE_200));
		assertTrue(e.isValidCode(ErrorLogger.ERROR_CODE_300));
		assertTrue(e.isValidCode(ErrorLogger.ERROR_CODE_400));
		assertTrue(e.isValidCode(ErrorLogger.ERROR_CODE_500));
		assertTrue(e.isValidCode(ErrorLogger.ERROR_CODE_900));

		assertFalse(e.isValidCode(0));
		assertFalse(e.isValidCode(204));
		assertFalse(e.isValidCode(404));
		assertFalse(e.isValidCode(501));
	}

}