Add script for ACTA test permission 74/116374/4
authorsangwan.kwon <sangwan.kwon@samsung.com>
Fri, 24 Feb 2017 05:11:01 +0000 (14:11 +0900)
committersangwan.kwon <sangwan.kwon@samsung.com>
Fri, 24 Feb 2017 06:36:29 +0000 (15:36 +0900)
* Test environment needs : CAP_SYS_ADMIN and system-session

Change-Id: Iecf36e523a7e295ca443f129c5f87018caea4bf4
Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
tests/transec/CMakeLists.txt
tests/transec/script/CMakeLists.txt [new file with mode: 0644]
tests/transec/script/pre-test.sh.in [new file with mode: 0755]

index 6a6d98b..64294de 100644 (file)
@@ -58,3 +58,4 @@ INSTALL(TARGETS
 )
 
 ADD_SUBDIRECTORY(resource)
+ADD_SUBDIRECTORY(script)
diff --git a/tests/transec/script/CMakeLists.txt b/tests/transec/script/CMakeLists.txt
new file mode 100644 (file)
index 0000000..8d71dd5
--- /dev/null
@@ -0,0 +1,32 @@
+# Copyright (c) 2017 Samsung Electronics Co., Ltd 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.
+#
+# @file        CMakeLists.txt
+# @author      Sangwan Kwon (sangwan.kwon@samsung.com)
+# @breif
+#
+
+CONFIGURE_FILE(pre-test.sh.in pre-test.sh @ONLY)
+INSTALL(FILES
+                       pre-test.sh
+               DESTINATION
+                       ${TEST_TRANSEC_PATH}/script
+               PERMISSIONS
+                       OWNER_READ
+                       OWNER_WRITE
+                       OWNER_EXECUTE
+                       GROUP_READ
+                       GROUP_EXECUTE
+                       WORLD_READ
+                       WORLD_EXECUTE)
diff --git a/tests/transec/script/pre-test.sh.in b/tests/transec/script/pre-test.sh.in
new file mode 100755 (executable)
index 0000000..b6df41a
--- /dev/null
@@ -0,0 +1,32 @@
+#!/bin/bash
+PATH=/bin:/usr/bin:/sbin:/usr/sbin
+
+# Copyright (c) 2017 Samsung Electronics Co., Ltd 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.
+#
+# @file        pre-test.sh.in
+# @author      Sangwan Kwon (sangwan.kwon@samsung.com)
+# @brief       set permission script for test
+#
+
+TEST_TRANSEC=@BIN_DIR@/@TARGET_TRANSEC_TEST@
+
+# change owner to system
+chown @USER_NAME@:@GROUP_NAME@ $TEST_TRANSEC
+
+# run test program as owner
+chmod 4755 $TEST_TRANSEC
+
+# launch() needs CAP_SYS_ADMIN
+setcap cap_sys_admin+ep $TEST_TRANSEC