summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsangwan.kwon <sangwan.kwon@samsung.com>2017-02-24 14:11:01 +0900
committersangwan.kwon <sangwan.kwon@samsung.com>2017-02-24 15:36:29 +0900
commit56501d1f5581fd2690c77a49c0cbe50e981dcce0 (patch)
tree079f3488340fe62289f384aecb5d411bb69cf28b
parent61a2f309654934b7b652147a267ce32668284ad1 (diff)
downloadcert-svc-56501d1f5581fd2690c77a49c0cbe50e981dcce0.tar.gz
cert-svc-56501d1f5581fd2690c77a49c0cbe50e981dcce0.tar.bz2
cert-svc-56501d1f5581fd2690c77a49c0cbe50e981dcce0.zip
Add script for ACTA test permission
* Test environment needs : CAP_SYS_ADMIN and system-session Change-Id: Iecf36e523a7e295ca443f129c5f87018caea4bf4 Signed-off-by: sangwan.kwon <sangwan.kwon@samsung.com>
-rw-r--r--tests/transec/CMakeLists.txt1
-rw-r--r--tests/transec/script/CMakeLists.txt32
-rwxr-xr-xtests/transec/script/pre-test.sh.in32
3 files changed, 65 insertions, 0 deletions
diff --git a/tests/transec/CMakeLists.txt b/tests/transec/CMakeLists.txt
index 6a6d98b..64294de 100644
--- a/tests/transec/CMakeLists.txt
+++ b/tests/transec/CMakeLists.txt
@@ -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
index 0000000..8d71dd5
--- /dev/null
+++ b/tests/transec/script/CMakeLists.txt
@@ -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
index 0000000..b6df41a
--- /dev/null
+++ b/tests/transec/script/pre-test.sh.in
@@ -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