diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-11-06 12:02:46 +0000 |
---|---|---|
committer | Liam Fallon <liam.fallon@ericsson.com> | 2018-11-08 17:54:13 +0000 |
commit | cad452cdb6d999f822fe11dc4fdd232cce30ff6a (patch) | |
tree | a2fdfb5a689d7c2a6f045424a9f078a44ea36f4d /auth | |
parent | ad6efc439440e991df30694ef2da17d640f20bdf (diff) |
Refactor unit test data
There were many copies of test policies and examples
strewn through the Apex unit tests. This change cleans
up the unit tests so that a single version of all example
policies is used in all tests.
Also added a new relative file root command line parameter
to Apex to allow the root of relative paths in configuration
files to be set.
Apologies for the size of this review but unfortunately
all of this must be done in one shot.
Issue-ID: POLICY-1252
Change-Id: Ibbb18fbf18e3897a1c61301d0a65e62bc643a0e9
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
(cherry picked from commit 53d8916cc60d97e2ce7ae345f8cc25f5602567da)
Diffstat (limited to 'auth')
-rw-r--r-- | auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/CliCodegenTest.java | 2 | ||||
-rw-r--r-- | auth/cli-codegen/src/test/resources/models/TestPolicyModel.json (renamed from auth/cli-codegen/src/test/resources/models/SamplePolicyModel.json) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/CliCodegenTest.java b/auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/CliCodegenTest.java index 968891d06..13f0bc0e6 100644 --- a/auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/CliCodegenTest.java +++ b/auth/cli-codegen/src/test/java/org/onap/policy/apex/auth/clicodegen/CliCodegenTest.java @@ -80,7 +80,7 @@ public class CliCodegenTest { AxPolicyModel apexPolicyModel = null; try { apexPolicyModel = modelReader - .read(new FileInputStream(new File("src/test/resources/models/SamplePolicyModel.json"))); + .read(new FileInputStream(new File("src/test/resources/models/TestPolicyModel.json"))); } catch (ApexModelException | FileNotFoundException e) { fail("test should not throw an exception"); } diff --git a/auth/cli-codegen/src/test/resources/models/SamplePolicyModel.json b/auth/cli-codegen/src/test/resources/models/TestPolicyModel.json index 2dc4bcd3f..2dc4bcd3f 100644 --- a/auth/cli-codegen/src/test/resources/models/SamplePolicyModel.json +++ b/auth/cli-codegen/src/test/resources/models/TestPolicyModel.json |