From aefe335ef35ffd318108fb667ce69e398f8d65bd Mon Sep 17 00:00:00 2001 From: vasraz Date: Thu, 2 Apr 2020 10:26:08 +0100 Subject: Increase test coverage Change-Id: I0c8ddfb32ae7abc6443007fc5cee72bec6da785b Signed-off-by: Vasyl Razinkov Issue-ID: SDC-2833 --- .../common/log/enums/EcompErrorSeverityTest.java | 37 ++++++++++++++++++ .../common/log/enums/EcompLoggerErrorCodeTest.java | 45 ++++++++++++++++++++++ .../sdc/common/log/enums/LogLevelTest.java | 37 ++++++++++++++++++ .../sdc/common/log/enums/LogMarkersTest.java | 37 ++++++++++++++++++ .../log/enums/LoggerSupportabilityActionsTest.java | 37 ++++++++++++++++++ .../sdc/common/log/enums/SeverityTest.java | 37 ++++++++++++++++++ .../sdc/common/log/enums/StatusCodeTest.java | 37 ++++++++++++++++++ 7 files changed, 267 insertions(+) create mode 100644 common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/EcompErrorSeverityTest.java create mode 100644 common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/EcompLoggerErrorCodeTest.java create mode 100644 common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LogLevelTest.java create mode 100644 common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LogMarkersTest.java create mode 100644 common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LoggerSupportabilityActionsTest.java create mode 100644 common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/SeverityTest.java create mode 100644 common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/StatusCodeTest.java (limited to 'common-app-logging/src/test/java/org') diff --git a/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/EcompErrorSeverityTest.java b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/EcompErrorSeverityTest.java new file mode 100644 index 0000000000..e32d1a13ba --- /dev/null +++ b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/EcompErrorSeverityTest.java @@ -0,0 +1,37 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * Modifications copyright (c) 2020 Nordix Foundation + * ================================================================================ + */ +package org.openecomp.sdc.common.log.enums; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; + +public class EcompErrorSeverityTest { + + @Test + public void testEnumValues() { + for (final Object value : EcompErrorSeverity.values()) { + assertThat(value).isNotNull().isInstanceOf(EcompErrorSeverity.class); + } + } + +} diff --git a/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/EcompLoggerErrorCodeTest.java b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/EcompLoggerErrorCodeTest.java new file mode 100644 index 0000000000..4fcdc2cb7c --- /dev/null +++ b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/EcompLoggerErrorCodeTest.java @@ -0,0 +1,45 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * Modifications copyright (c) 2020 Nordix Foundation + * ================================================================================ + */ +package org.openecomp.sdc.common.log.enums; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; +import org.openecomp.sdc.common.log.utils.EcompLogErrorCode; + +public class EcompLoggerErrorCodeTest { + + @Test + public void testEnumValues() { + for (final Object value : EcompLoggerErrorCode.values()) { + assertThat(value).isNotNull().isInstanceOf(EcompLoggerErrorCode.class); + } + } + + @Test + public void testGetByValue() { + for (final EcompLogErrorCode value : EcompLogErrorCode.values()) { + assertThat(EcompLoggerErrorCode.getByValue(value.name())).isNotNull() + .isInstanceOf(EcompLoggerErrorCode.class); + } + } +} diff --git a/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LogLevelTest.java b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LogLevelTest.java new file mode 100644 index 0000000000..2bee2c0568 --- /dev/null +++ b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LogLevelTest.java @@ -0,0 +1,37 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * Modifications copyright (c) 2020 Nordix Foundation + * ================================================================================ + */ +package org.openecomp.sdc.common.log.enums; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; + +public class LogLevelTest { + + @Test + public void testEnumValues() { + for (final Object value : LogLevel.values()) { + assertThat(value).isNotNull().isInstanceOf(LogLevel.class); + } + } + +} diff --git a/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LogMarkersTest.java b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LogMarkersTest.java new file mode 100644 index 0000000000..b2cad7e1a0 --- /dev/null +++ b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LogMarkersTest.java @@ -0,0 +1,37 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * Modifications copyright (c) 2020 Nordix Foundation + * ================================================================================ + */ +package org.openecomp.sdc.common.log.enums; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; + +public class LogMarkersTest { + + @Test + public void testEnumValues() { + for (final Object value : LogMarkers.values()) { + assertThat(value).isNotNull().isInstanceOf(LogMarkers.class); + } + } + +} diff --git a/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LoggerSupportabilityActionsTest.java b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LoggerSupportabilityActionsTest.java new file mode 100644 index 0000000000..b593ce4553 --- /dev/null +++ b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/LoggerSupportabilityActionsTest.java @@ -0,0 +1,37 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * Modifications copyright (c) 2020 Nordix Foundation + * ================================================================================ + */ +package org.openecomp.sdc.common.log.enums; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; + +public class LoggerSupportabilityActionsTest { + + @Test + public void testEnumValues() { + for (final Object value : LoggerSupportabilityActions.values()) { + assertThat(value).isNotNull().isInstanceOf(LoggerSupportabilityActions.class); + } + } + +} diff --git a/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/SeverityTest.java b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/SeverityTest.java new file mode 100644 index 0000000000..b6ad19511e --- /dev/null +++ b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/SeverityTest.java @@ -0,0 +1,37 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * Modifications copyright (c) 2020 Nordix Foundation + * ================================================================================ + */ +package org.openecomp.sdc.common.log.enums; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; + +public class SeverityTest { + + @Test + public void testEnumValues() { + for (final Object value : Severity.values()) { + assertThat(value).isNotNull().isInstanceOf(Severity.class); + } + } + +} diff --git a/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/StatusCodeTest.java b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/StatusCodeTest.java new file mode 100644 index 0000000000..55d076df38 --- /dev/null +++ b/common-app-logging/src/test/java/org/openecomp/sdc/common/log/enums/StatusCodeTest.java @@ -0,0 +1,37 @@ +/*- + * ============LICENSE_START======================================================= + * SDC + * ================================================================================ + * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + * Modifications copyright (c) 2020 Nordix Foundation + * ================================================================================ + */ +package org.openecomp.sdc.common.log.enums; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; + +public class StatusCodeTest { + + @Test + public void testEnumValues() { + for (final Object value : StatusCode.values()) { + assertThat(value).isNotNull().isInstanceOf(StatusCode.class); + } + } + +} -- cgit 1.2.3-korg