diff options
| author | Quincey Koziol <koziol@hdfgroup.org> | 2017-04-11 15:40:00 (GMT) |
|---|---|---|
| committer | Quincey Koziol <koziol@hdfgroup.org> | 2017-04-11 15:40:00 (GMT) |
| commit | da4b69097756158fdbfcbf52b5b552e2034d263d (patch) | |
| tree | 51d646d6a737c1e4216f04b9c9fa16a0afc49277 /java/test/TestH5PL.java | |
| parent | a77bf61074122d4e6a100c09f23a684cd9655ff8 (diff) | |
| parent | ccb4e9ed9a5e0af27db9f1504a628e35d7f4cf92 (diff) | |
| download | hdf5-da4b69097756158fdbfcbf52b5b552e2034d263d.zip hdf5-da4b69097756158fdbfcbf52b5b552e2034d263d.tar.gz hdf5-da4b69097756158fdbfcbf52b5b552e2034d263d.tar.bz2 | |
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into merge_hyperslab_updates
Diffstat (limited to 'java/test/TestH5PL.java')
| -rw-r--r-- | java/test/TestH5PL.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/java/test/TestH5PL.java b/java/test/TestH5PL.java index 9f1876c..759db5f 100644 --- a/java/test/TestH5PL.java +++ b/java/test/TestH5PL.java @@ -69,6 +69,36 @@ public class TestH5PL { } } + @Test + public void TestH5PLpaths() { + try { + int original_entries = H5.H5PLsize(); + H5.H5PLappend("path_one"); + int plugin_entries = H5.H5PLsize(); + assertTrue("H5.H5PLsize: "+plugin_entries, (original_entries+1) == plugin_entries); + H5.H5PLprepend("path_two"); + plugin_entries = H5.H5PLsize(); + assertTrue("H5.H5PLsize: "+plugin_entries, (original_entries+2) == plugin_entries); + H5.H5PLinsert("path_three", original_entries); + plugin_entries = H5.H5PLsize(); + assertTrue("H5.H5PLsize: "+plugin_entries, (original_entries+3) == plugin_entries); + String first_path = H5.H5PLget(original_entries); + assertTrue("First path was : "+first_path + " ",first_path.compareToIgnoreCase("path_three")==0); + H5.H5PLreplace("path_four", original_entries); + first_path = H5.H5PLget(original_entries); + assertTrue("First path changed to : "+first_path + " ",first_path.compareToIgnoreCase("path_four")==0); + H5.H5PLremove(original_entries); + first_path = H5.H5PLget(original_entries); + assertTrue("First path now : "+first_path + " ",first_path.compareToIgnoreCase("path_two")==0); + plugin_entries = H5.H5PLsize(); + assertTrue("H5.H5PLsize: "+plugin_entries, (original_entries+2) == plugin_entries); + } + catch (Throwable err) { + err.printStackTrace(); + fail("TestH5PLpaths " + err); + } + } + @Ignore public void TestH5PLdlopen() { long file_id = -1; |
