From c2937c736eee658e29766ca15abc9f62b1336064 Mon Sep 17 00:00:00 2001 From: juanf <juanf@ethz.ch> Date: Fri, 26 May 2023 17:34:05 +0200 Subject: [PATCH] SSDM-13521: adding more methods to the Unix replacement library --- .../ch/systemsx/cisd/common/io/PosixTest.java | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 lib-commonbase/sourceTest/java/ch/systemsx/cisd/common/io/PosixTest.java diff --git a/lib-commonbase/sourceTest/java/ch/systemsx/cisd/common/io/PosixTest.java b/lib-commonbase/sourceTest/java/ch/systemsx/cisd/common/io/PosixTest.java new file mode 100644 index 00000000000..f28bf92bdd6 --- /dev/null +++ b/lib-commonbase/sourceTest/java/ch/systemsx/cisd/common/io/PosixTest.java @@ -0,0 +1,35 @@ +package ch.systemsx.cisd.common.io; + +import org.testng.annotations.Test; + +import java.io.File; +import java.io.IOException; + +public class PosixTest +{ + @Test + public void testGetEuid() + { + int euid = Posix.getEuid(); + } + + @Test + public void testGetUid() + { + int uid = Posix.getUid(); + } + + @Test + public void testGetGid() + { + int gid = Posix.getGid(); + } + + @Test + public void testSetOwner() throws IOException + { + File file = File.createTempFile("pre", "su"); + Posix.setOwner(file.getPath(), Posix.getUid(), Posix.getGid()); + file.delete(); + } +} -- GitLab