diff options
author | Lianhao Lu <lianhao.lu@intel.com> | 2018-11-09 14:57:30 +0800 |
---|---|---|
committer | Lianhao Lu <lianhao.lu@intel.com> | 2018-11-12 15:55:37 +0800 |
commit | 70f9f24e6ed39a6ddb4afef02516af624f50079d (patch) | |
tree | cf1ecb8bff087d757f41bb31f6921dd6f17dc63c /plugins/reception-plugins/src/test/resources | |
parent | 789f09f2430440d6be44a5fad26715d002aff757 (diff) |
Make FileSystemReceptionHandler more tolerant
Make FileSystemReceptionHandler tolerant of exceptions thrown when
parsing tosca template and be able to handle new incoming csar.
Also added the unit test for FileSystemReceptionHandler.
Change-Id: I0f1647f6f952576a8e61adca4d027990706d1411
Issue-ID: POLICY-837
Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
Diffstat (limited to 'plugins/reception-plugins/src/test/resources')
-rw-r--r-- | plugins/reception-plugins/src/test/resources/handling-filesystem.json | 5 | ||||
-rw-r--r-- | plugins/reception-plugins/src/test/resources/handling-filesystemInvalid.json | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/plugins/reception-plugins/src/test/resources/handling-filesystem.json b/plugins/reception-plugins/src/test/resources/handling-filesystem.json new file mode 100644 index 00000000..6a402a7a --- /dev/null +++ b/plugins/reception-plugins/src/test/resources/handling-filesystem.json @@ -0,0 +1,5 @@ +{ + "name": "parameterConfig1", + "watchPath": "/tmp" +} + diff --git a/plugins/reception-plugins/src/test/resources/handling-filesystemInvalid.json b/plugins/reception-plugins/src/test/resources/handling-filesystemInvalid.json new file mode 100644 index 00000000..871b61c2 --- /dev/null +++ b/plugins/reception-plugins/src/test/resources/handling-filesystemInvalid.json @@ -0,0 +1,4 @@ +{ + "invalidKey": "/tmp" +} + |