|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, Red Hat, Inc. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +#include "precompiled.hpp" |
| 25 | + |
| 26 | +#ifdef LINUX |
| 27 | + |
| 28 | +#include "cgroupV1Subsystem_linux.hpp" |
| 29 | +#include "cgroupV2Subsystem_linux.hpp" |
| 30 | +#include "unittest.hpp" |
| 31 | + |
| 32 | +typedef struct { |
| 33 | + const char* mount_path; |
| 34 | + const char* root_path; |
| 35 | + const char* cgroup_path; |
| 36 | + const char* expected_path; |
| 37 | +} TestCase; |
| 38 | + |
| 39 | +TEST(os_linux_cgroup, set_cgroupv1_subsystem_path) { |
| 40 | + TestCase host = { |
| 41 | + "/sys/fs/cgroup/memory", // mount_path |
| 42 | + "/", // root_path |
| 43 | + "/user.slice/user-1000.slice/user@1000.service", // cgroup_path |
| 44 | + "/sys/fs/cgroup/memory/user.slice/user-1000.slice/user@1000.service" // expected_path |
| 45 | + }; |
| 46 | + TestCase container_engine = { |
| 47 | + "/sys/fs/cgroup/mem", // mount_path |
| 48 | + "/user.slice/user-1000.slice/user@1000.service", // root_path |
| 49 | + "/user.slice/user-1000.slice/user@1000.service", // cgroup_path |
| 50 | + "/sys/fs/cgroup/mem" // expected_path |
| 51 | + }; |
| 52 | + int length = 2; |
| 53 | + TestCase* testCases[] = { &host, |
| 54 | + &container_engine }; |
| 55 | + for (int i = 0; i < length; i++) { |
| 56 | + CgroupV1Controller* ctrl = new CgroupV1Controller( (char*)testCases[i]->root_path, |
| 57 | + (char*)testCases[i]->mount_path); |
| 58 | + ctrl->set_subsystem_path((char*)testCases[i]->cgroup_path); |
| 59 | + ASSERT_STREQ(testCases[i]->expected_path, ctrl->subsystem_path()); |
| 60 | + } |
| 61 | +} |
| 62 | + |
| 63 | +TEST(os_linux_cgroup, set_cgroupv2_subsystem_path) { |
| 64 | + TestCase at_mount_root = { |
| 65 | + "/sys/fs/cgroup", // mount_path |
| 66 | + NULL, // root_path, ignored |
| 67 | + "/", // cgroup_path |
| 68 | + "/sys/fs/cgroup" // expected_path |
| 69 | + }; |
| 70 | + TestCase sub_path = { |
| 71 | + "/sys/fs/cgroup", // mount_path |
| 72 | + NULL, // root_path, ignored |
| 73 | + "/foobar", // cgroup_path |
| 74 | + "/sys/fs/cgroup/foobar" // expected_path |
| 75 | + }; |
| 76 | + int length = 2; |
| 77 | + TestCase* testCases[] = { &at_mount_root, |
| 78 | + &sub_path }; |
| 79 | + for (int i = 0; i < length; i++) { |
| 80 | + CgroupV2Controller* ctrl = new CgroupV2Controller( (char*)testCases[i]->mount_path, |
| 81 | + (char*)testCases[i]->cgroup_path); |
| 82 | + ASSERT_STREQ(testCases[i]->expected_path, ctrl->subsystem_path()); |
| 83 | + } |
| 84 | +} |
| 85 | + |
| 86 | +#endif |
0 commit comments