| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- // Copyright 2019 Yunion
- //
- // 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.
- package system_service
- import (
- "testing"
- )
- func TestParseSystemd(t *testing.T) {
- cases := []struct {
- in string
- inIsEnabled string
- name string
- wantLoaded bool
- wantActive bool
- wantEnabled bool
- }{
- {
- in: `openvswitch.service - LSB: Open vSwitch switch
- Loaded: loaded (/etc/rc.d/init.d/openvswitch; bad; vendor preset: disabled)
- Active: active (running) since Wed 2019-04-10 15:11:23 CST; 4 days ago
- Docs: man:systemd-sysv-generator(8)
- Process: 3686 ExecStart=/etc/rc.d/init.d/openvswitch start (code=exited, status=0/SUCCESS)
- CGroup: /system.slice/openvswitch.service
- ├─3722 ovsdb-server: monitoring pid 3723 (healthy)
- ├─3723 ovsdb-server /etc/openvswitch/conf.db -vconsole:emer -vsysl...
- ├─3774 ovs-vswitchd: monitoring pid 3775 (healthy)
- └─3775 ovs-vswitchd unix:/var/run/openvswitch/db.sock -vconsole:em...`,
- name: "openvswitch",
- wantLoaded: true,
- wantActive: true,
- },
- {
- in: "Unit yunion-host.service could not be found.",
- name: "yunion-host",
- wantLoaded: false,
- wantActive: false,
- },
- {
- name: "enabled service",
- inIsEnabled: "a\nb\nenabled\n",
- wantEnabled: true,
- },
- {
- name: "enabled-runtime service",
- inIsEnabled: "a\nb\nenabled-runtime\n",
- wantEnabled: true,
- },
- }
- for _, c := range cases {
- status := parseSystemdStatus(c.in, c.inIsEnabled, c.name)
- if status.Loaded != c.wantLoaded {
- t.Errorf("parseSystemdStatus %s Loaded: want %v got %v", c.name, c.wantLoaded, status.Loaded)
- }
- if status.Active != c.wantActive {
- t.Errorf("parseSystemdStatus %s Active: want %v got %v", c.name, c.wantActive, status.Active)
- }
- if status.Enabled != c.wantEnabled {
- t.Errorf("parseSystemdStatus %s Enabled: want %v got %v", c.name, c.wantActive, status.Enabled)
- }
- }
- }
|