kanrisuru 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/CONTRIBUTING.md +9 -9
- data/.github/ISSUE_TEMPLATE/bug_report.md +7 -8
- data/CHANGELOG.md +110 -101
- data/CODE_OF_CONDUCT.md +10 -10
- data/README.md +1 -0
- data/kanrisuru.gemspec +1 -1
- data/lib/kanrisuru/core/disk.rb +0 -3
- data/lib/kanrisuru/core/find.rb +4 -5
- data/lib/kanrisuru/core/socket.rb +2 -1
- data/lib/kanrisuru/remote/cpu.rb +5 -1
- data/lib/kanrisuru/remote/fstab.rb +4 -4
- data/lib/kanrisuru/util.rb +1 -1
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/apt_spec.rb +22 -30
- data/spec/functional/core/archive_spec.rb +94 -119
- data/spec/functional/core/find_spec.rb +94 -113
- data/spec/functional/core/socket_spec.rb +23 -28
- data/spec/functional/core/stream_spec.rb +12 -12
- data/spec/functional/core/transfer_spec.rb +108 -131
- data/spec/functional/core/yum_spec.rb +58 -83
- data/spec/functional/remote/cluster_spec.rb +11 -2
- data/spec/functional/remote/cpu_spec.rb +104 -0
- data/spec/functional/remote/env_spec.rb +3 -5
- data/spec/helper/stub_network.rb +30 -11
- data/spec/integration/core/file_spec.rb +0 -1
- data/spec/integration/core/find_spec.rb +1 -0
- data/spec/integration/core/system_spec.rb +0 -1
- data/spec/integration/core/zypper_spec.rb +3 -3
- data/spec/unit/command_spec.rb +1 -1
- data/spec/unit/core/find_spec.rb +1 -1
- data/spec/unit/core/yum_spec.rb +1 -1
- data/spec/unit/mode_spec.rb +2 -2
- data/spec/unit/remote/cluster_spec.rb +3 -1
- data/spec/unit/remote/cpu_spec.rb +1 -2
- data/spec/unit/remote/env_spec.rb +1 -3
- data/spec/unit/util_spec.rb +13 -0
- metadata +4 -3
@@ -22,10 +22,9 @@ RSpec.describe Kanrisuru::Core::Apt do
|
|
22
22
|
it 'prepares apt list command' do
|
23
23
|
expect_command(host.apt('list'), 'apt list')
|
24
24
|
expect_command(host.apt('list',
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
), 'apt list --installed --upgradeable --all-versions')
|
25
|
+
installed: true,
|
26
|
+
upgradeable: true,
|
27
|
+
all_versions: true), 'apt list --installed --upgradeable --all-versions')
|
29
28
|
|
30
29
|
expect_command(host.apt('list', package_name: 'nginx'), 'apt list -a nginx')
|
31
30
|
end
|
@@ -43,28 +42,22 @@ RSpec.describe Kanrisuru::Core::Apt do
|
|
43
42
|
end
|
44
43
|
|
45
44
|
it 'prepares apt install command' do
|
46
|
-
expect_command(host.apt('install',
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
expect_command(host.apt('install',
|
61
|
-
packages: ['build-essential', 'manpages-dev'],
|
62
|
-
only_upgrade: true,
|
63
|
-
),
|
64
|
-
'apt-get install -y --only-upgrade build-essential manpages-dev'
|
65
|
-
)
|
45
|
+
expect_command(host.apt('install',
|
46
|
+
packages: 'nginx'),
|
47
|
+
'apt-get install -y nginx')
|
48
|
+
|
49
|
+
expect_command(host.apt('install',
|
50
|
+
packages: 'monit',
|
51
|
+
no_upgrade: true,
|
52
|
+
reinstall: true),
|
53
|
+
'apt-get install -y --no-upgrade --reinstall monit')
|
54
|
+
|
55
|
+
expect_command(host.apt('install',
|
56
|
+
packages: %w[build-essential manpages-dev],
|
57
|
+
only_upgrade: true),
|
58
|
+
'apt-get install -y --only-upgrade build-essential manpages-dev')
|
66
59
|
end
|
67
|
-
|
60
|
+
|
68
61
|
it 'prepares apt remove command' do
|
69
62
|
expect_command(host.apt('remove', packages: ['python']), 'apt-get remove -y python')
|
70
63
|
end
|
@@ -82,15 +75,14 @@ RSpec.describe Kanrisuru::Core::Apt do
|
|
82
75
|
end
|
83
76
|
|
84
77
|
it 'prepares apt show command' do
|
85
|
-
expect_command(host.apt('show', packages: 'ruby'), 'apt show -a ruby')
|
86
|
-
end
|
78
|
+
expect_command(host.apt('show', packages: 'ruby'), 'apt show -a ruby')
|
79
|
+
end
|
87
80
|
|
88
81
|
it 'prepares apt clean command' do
|
89
|
-
expect_command(host.apt('clean'), 'apt-get clean')
|
82
|
+
expect_command(host.apt('clean'), 'apt-get clean')
|
90
83
|
end
|
91
84
|
|
92
85
|
it 'prepares apt autoclean command' do
|
93
|
-
expect_command(host.apt('autoclean'), 'apt-get autoclean')
|
86
|
+
expect_command(host.apt('autoclean'), 'apt-get autoclean')
|
94
87
|
end
|
95
|
-
|
96
88
|
end
|
@@ -5,7 +5,7 @@ require 'spec_helper'
|
|
5
5
|
RSpec.describe Kanrisuru::Core::Apt do
|
6
6
|
before(:all) do
|
7
7
|
StubNetwork.stub!
|
8
|
-
StubNetwork.stub_command!(:realpath) do |
|
8
|
+
StubNetwork.stub_command!(:realpath) do |_args|
|
9
9
|
Kanrisuru::Core::Path::FilePath.new(directory)
|
10
10
|
end
|
11
11
|
end
|
@@ -26,169 +26,144 @@ RSpec.describe Kanrisuru::Core::Apt do
|
|
26
26
|
let(:directory) { '/home/ubuntu/dir' }
|
27
27
|
|
28
28
|
it 'prepares tar list command' do
|
29
|
-
[
|
30
|
-
expect_command(host.tar(action_variant, 'file.txt'),
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
),
|
41
|
-
'tar --restrict -C /home/ubuntu/dir -f ~/file.txt -j -t --occurrence 1 --label --multi-volume'
|
42
|
-
)
|
29
|
+
%w[list t].each do |action_variant|
|
30
|
+
expect_command(host.tar(action_variant, 'file.txt'),
|
31
|
+
'tar --restrict -f file.txt -t')
|
32
|
+
|
33
|
+
expect_command(host.tar(action_variant, '~/file.txt',
|
34
|
+
compress: 'bzip2',
|
35
|
+
directory: directory,
|
36
|
+
occurrence: 1,
|
37
|
+
label: true,
|
38
|
+
multi_volume: true),
|
39
|
+
'tar --restrict -C /home/ubuntu/dir -f ~/file.txt -j -t --occurrence 1 --label --multi-volume')
|
43
40
|
end
|
44
41
|
end
|
45
42
|
|
46
43
|
it 'prepares tar extract command' do
|
47
|
-
[
|
48
|
-
expect_command(host.tar(action_variant, 'archive.tar'),
|
49
|
-
|
50
|
-
)
|
44
|
+
%w[extract get x].each do |action_variant|
|
45
|
+
expect_command(host.tar(action_variant, 'archive.tar'),
|
46
|
+
'tar --restrict -f archive.tar -x')
|
51
47
|
|
52
48
|
expect_command(host.tar(action_variant, 'archive.tar',
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
'tar --restrict -C /home/ubuntu/dir -f archive.tar -J -x --occurrence 2 --no-same-owner --no-same-permissions --no-selinux --no-xattrs --multi-volume --label --skip-old-files --overwrite --overwrite-dir --unlink-first --recursive-unlink file.txt'
|
70
|
-
)
|
49
|
+
compress: 'xz',
|
50
|
+
directory: directory,
|
51
|
+
occurrence: 2,
|
52
|
+
no_same_owner: true,
|
53
|
+
no_same_permissions: true,
|
54
|
+
no_selinux: true,
|
55
|
+
no_xattrs: true,
|
56
|
+
multi_volume: true,
|
57
|
+
label: true,
|
58
|
+
skip_old_files: true,
|
59
|
+
overwrite: true,
|
60
|
+
overwrite_dir: true,
|
61
|
+
unlink_first: true,
|
62
|
+
recursive_unlink: true,
|
63
|
+
paths: 'file.txt'),
|
64
|
+
'tar --restrict -C /home/ubuntu/dir -f archive.tar -J -x --occurrence 2 --no-same-owner --no-same-permissions --no-selinux --no-xattrs --multi-volume --label --skip-old-files --overwrite --overwrite-dir --unlink-first --recursive-unlink file.txt')
|
71
65
|
|
72
66
|
expect_command(host.tar(action_variant, 'archive.tar',
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
'tar --restrict -f archive.tar -x --preserve-permissions --same-owner --one-file-system --keep-old-files file1.txt file2.txt'
|
80
|
-
)
|
67
|
+
preserve_permissions: true,
|
68
|
+
same_owners: true,
|
69
|
+
one_file_system: true,
|
70
|
+
keep_old_files: true,
|
71
|
+
paths: ['file1.txt', 'file2.txt']),
|
72
|
+
'tar --restrict -f archive.tar -x --preserve-permissions --same-owner --one-file-system --keep-old-files file1.txt file2.txt')
|
81
73
|
end
|
82
74
|
end
|
83
75
|
|
84
76
|
it 'prepares tar create command' do
|
85
|
-
[
|
86
|
-
expect_command(host.tar(action_variant, 'archive.lzma', compress: 'lzma'),
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
),
|
103
|
-
'tar --restrict -f archive.gz -z -c --exclude=file2.txt --exclude=file4.txt file1.txt file3.txt'
|
104
|
-
)
|
77
|
+
%w[create c].each do |action_variant|
|
78
|
+
expect_command(host.tar(action_variant, 'archive.lzma', compress: 'lzma'),
|
79
|
+
'tar --restrict -f archive.lzma --lzma -c')
|
80
|
+
expect_command(host.tar(action_variant, 'archive.gz'), 'tar --restrict -f archive.gz -c')
|
81
|
+
|
82
|
+
expect_command(host.tar(action_variant, 'archive.gz',
|
83
|
+
directory: directory,
|
84
|
+
compress: 'gzip',
|
85
|
+
exclude: 'file2.txt',
|
86
|
+
paths: 'file1.txt'),
|
87
|
+
'tar --restrict -C /home/ubuntu/dir -f archive.gz -z -c --exclude=file2.txt file1.txt')
|
88
|
+
|
89
|
+
expect_command(host.tar(action_variant, 'archive.gz',
|
90
|
+
compress: 'gzip',
|
91
|
+
exclude: ['file2.txt', 'file4.txt'],
|
92
|
+
paths: ['file1.txt', 'file3.txt']),
|
93
|
+
'tar --restrict -f archive.gz -z -c --exclude=file2.txt --exclude=file4.txt file1.txt file3.txt')
|
105
94
|
end
|
106
95
|
end
|
107
96
|
|
108
97
|
it 'prepares tar append command' do
|
109
|
-
[
|
98
|
+
%w[append r].each do |action_variant|
|
110
99
|
expect_command(host.tar(action_variant, 'archive.tar'), 'tar --restrict -f archive.tar -r')
|
111
100
|
|
112
|
-
expect_command(host.tar(action_variant, 'archive.tar',
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
),
|
122
|
-
'tar --restrict -f archive.tar -r main.conf main2.conf'
|
123
|
-
)
|
124
|
-
end
|
101
|
+
expect_command(host.tar(action_variant, 'archive.tar',
|
102
|
+
directory: directory,
|
103
|
+
paths: 'main.conf'),
|
104
|
+
'tar --restrict -C /home/ubuntu/dir -f archive.tar -r main.conf')
|
105
|
+
|
106
|
+
expect_command(host.tar(action_variant, 'archive.tar',
|
107
|
+
paths: ['main.conf', 'main2.conf']),
|
108
|
+
'tar --restrict -f archive.tar -r main.conf main2.conf')
|
109
|
+
end
|
125
110
|
end
|
126
111
|
|
127
112
|
it 'prepares tar concat command' do
|
128
|
-
[
|
113
|
+
%w[catenate concat A].each do |action_variant|
|
129
114
|
expect_command(host.tar(action_variant, 'archive.tar'), 'tar --restrict -f archive.tar -A')
|
130
115
|
expect_command(host.tar(action_variant, 'archive.tar',
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
'tar --restrict -C /home/ubuntu/dir -f archive.tar -A archive2.tar'
|
135
|
-
)
|
116
|
+
directory: directory,
|
117
|
+
paths: 'archive2.tar'),
|
118
|
+
'tar --restrict -C /home/ubuntu/dir -f archive.tar -A archive2.tar')
|
136
119
|
|
137
120
|
expect_command(host.tar(action_variant, 'archive.tar',
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
'tar --restrict -C /home/ubuntu/dir -f archive.tar -A archive2.tar archive3.tar'
|
142
|
-
)
|
121
|
+
directory: directory,
|
122
|
+
paths: ['archive2.tar', 'archive3.tar']),
|
123
|
+
'tar --restrict -C /home/ubuntu/dir -f archive.tar -A archive2.tar archive3.tar')
|
143
124
|
end
|
144
125
|
end
|
145
126
|
|
146
127
|
it 'prepares tar update command' do
|
147
|
-
[
|
128
|
+
%w[update u].each do |action_variant|
|
148
129
|
expect_command(host.tar(action_variant, 'archive',
|
149
|
-
|
150
|
-
|
151
|
-
'tar --restrict -f archive -u file1.txt'
|
152
|
-
)
|
130
|
+
paths: 'file1.txt'),
|
131
|
+
'tar --restrict -f archive -u file1.txt')
|
153
132
|
|
154
133
|
expect_command(host.tar(action_variant, 'archive',
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
'tar --restrict -C /home/ubuntu/dir -f archive -u file1.txt file2.txt'
|
159
|
-
)
|
134
|
+
directory: directory,
|
135
|
+
paths: ['file1.txt', 'file2.txt']),
|
136
|
+
'tar --restrict -C /home/ubuntu/dir -f archive -u file1.txt file2.txt')
|
160
137
|
end
|
161
138
|
end
|
162
139
|
|
163
140
|
it 'prepares tar diff command' do
|
164
|
-
[
|
165
|
-
expect_command(host.tar(action_variant, 'archive.tar', directory: directory),
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
)
|
141
|
+
%w[diff compare d].each do |action_variant|
|
142
|
+
expect_command(host.tar(action_variant, 'archive.tar', directory: directory),
|
143
|
+
'tar --restrict -C /home/ubuntu/dir -f archive.tar -d')
|
144
|
+
expect_command(host.tar(action_variant, 'archive.tar',
|
145
|
+
directory: directory,
|
146
|
+
occurrence: 4),
|
147
|
+
'tar --restrict -C /home/ubuntu/dir -f archive.tar -d --occurrence 4')
|
172
148
|
end
|
173
149
|
end
|
174
150
|
|
175
151
|
it 'prepares tar delete command' do
|
176
|
-
expect_command(host.tar('delete', 'archive.tar', paths: 'file1.txt'),
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
)
|
152
|
+
expect_command(host.tar('delete', 'archive.tar', paths: 'file1.txt'),
|
153
|
+
'tar --restrict -f archive.tar --delete file1.txt')
|
154
|
+
expect_command(host.tar('delete', 'archive.tar',
|
155
|
+
paths: ['file1.txt', 'file2.txt'],
|
156
|
+
occurrence: 3),
|
157
|
+
'tar --restrict -f archive.tar --delete --occurrence 3 file1.txt file2.txt')
|
183
158
|
end
|
184
159
|
|
185
160
|
it 'prepares invalid tar command' do
|
186
|
-
expect
|
161
|
+
expect do
|
187
162
|
host.tar('abc', 'file1.txt')
|
188
|
-
|
163
|
+
end.to raise_error(ArgumentError)
|
189
164
|
|
190
|
-
expect
|
165
|
+
expect do
|
191
166
|
host.tar('create', 'archive.tar', compress: 'xip')
|
192
|
-
|
167
|
+
end.to raise_error(ArgumentError)
|
193
168
|
end
|
194
169
|
end
|
@@ -20,150 +20,131 @@ RSpec.describe Kanrisuru::Core::Find do
|
|
20
20
|
end
|
21
21
|
|
22
22
|
it 'prepares find command' do
|
23
|
-
expect_command(host.find,
|
23
|
+
expect_command(host.find, 'find')
|
24
24
|
|
25
|
-
expect_command(host.find(follow: 'never'),
|
26
|
-
expect_command(host.find(follow: 'always'),
|
27
|
-
expect_command(host.find(follow: 'command'),
|
25
|
+
expect_command(host.find(follow: 'never'), 'find -P')
|
26
|
+
expect_command(host.find(follow: 'always'), 'find -L')
|
27
|
+
expect_command(host.find(follow: 'command'), 'find -H')
|
28
28
|
|
29
|
-
expect_command(host.find(paths: '/etc'),
|
30
|
-
expect_command(host.find(paths: ['/etc', '/var', '/home']),
|
29
|
+
expect_command(host.find(paths: '/etc'), 'find /etc')
|
30
|
+
expect_command(host.find(paths: ['/etc', '/var', '/home']), 'find /etc /var /home')
|
31
31
|
|
32
|
-
expect
|
32
|
+
expect do
|
33
33
|
host.find(paths: 1)
|
34
|
-
|
35
|
-
|
36
|
-
expect_command(host.find(paths: '/',
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
maxdepth: 100
|
58
|
-
),
|
59
|
-
"find / -path /lib -name *.so -gid 0 -uid 0 -user root -group root -links 2 -maxdepth 100 -mindepth 0"
|
60
|
-
)
|
34
|
+
end.to raise_error(ArgumentError)
|
35
|
+
|
36
|
+
expect_command(host.find(paths: '/',
|
37
|
+
executable: true,
|
38
|
+
empty: true,
|
39
|
+
readable: true,
|
40
|
+
writeable: true,
|
41
|
+
nogroup: true,
|
42
|
+
nouser: true,
|
43
|
+
mount: true),
|
44
|
+
'find / -executable -empty -readable -nogroup -nouser -mount')
|
45
|
+
|
46
|
+
expect_command(host.find(paths: '/',
|
47
|
+
path: '/lib',
|
48
|
+
name: '*.so',
|
49
|
+
gid: 0,
|
50
|
+
uid: 0,
|
51
|
+
user: 'root',
|
52
|
+
group: 'root',
|
53
|
+
links: 2,
|
54
|
+
mindepth: 0,
|
55
|
+
maxdepth: 100),
|
56
|
+
'find / -path /lib -name *.so -gid 0 -uid 0 -user root -group root -links 2 -maxdepth 100 -mindepth 0')
|
61
57
|
|
62
58
|
expect_command(host.find(paths: '/var/log',
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
"find /var/log -atime +1 -ctime +2 -mtime +3 -amin 100 -cmin 200 -mmin 300"
|
71
|
-
)
|
59
|
+
atime: '+1',
|
60
|
+
ctime: '+2',
|
61
|
+
mtime: '+3',
|
62
|
+
amin: '100',
|
63
|
+
cmin: '200',
|
64
|
+
mmin: '300'),
|
65
|
+
'find /var/log -atime +1 -ctime +2 -mtime +3 -amin 100 -cmin 200 -mmin 300')
|
72
66
|
|
73
67
|
expect_command(host.find(
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
)
|
68
|
+
paths: '/dev',
|
69
|
+
regex: '/dev/tty[0-9]*'
|
70
|
+
),
|
71
|
+
"find /dev -regex '/dev/tty[0-9]*'")
|
79
72
|
|
80
73
|
expect_command(host.find(
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
)
|
74
|
+
paths: '/dev',
|
75
|
+
regex_type: 'posix-egrep',
|
76
|
+
regex: '/dev/tty[0-9]*'
|
77
|
+
),
|
78
|
+
"find /dev -regextype posix-egrep -regex '/dev/tty[0-9]*'")
|
87
79
|
|
88
80
|
expect_command(host.find(
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
)
|
81
|
+
paths: '/var/log',
|
82
|
+
size: 100
|
83
|
+
),
|
84
|
+
'find /var/log -size 100')
|
94
85
|
|
95
86
|
expect_command(host.find(
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
}.to raise_error(ArgumentError)
|
87
|
+
paths: '/var/log',
|
88
|
+
size: '100'
|
89
|
+
),
|
90
|
+
'find /var/log -size 100')
|
91
|
+
|
92
|
+
expect do
|
93
|
+
host.find(size: '100n')
|
94
|
+
end.to raise_error(ArgumentError)
|
105
95
|
|
106
96
|
expect_command(host.find(
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
)
|
97
|
+
paths: '/var/log',
|
98
|
+
size: '-100k'
|
99
|
+
),
|
100
|
+
'find /var/log -size -100k')
|
112
101
|
|
113
102
|
expect_command(host.find(
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
)
|
103
|
+
paths: '/var/log',
|
104
|
+
size: '+10M'
|
105
|
+
),
|
106
|
+
'find /var/log -size +10M')
|
119
107
|
|
120
108
|
expect_command(host.find(
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
)
|
109
|
+
paths: '/dev',
|
110
|
+
type: 'directory'
|
111
|
+
),
|
112
|
+
'find /dev -type d')
|
126
113
|
|
127
114
|
expect_command(host.find(
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
)
|
115
|
+
paths: '/dev',
|
116
|
+
type: 'file'
|
117
|
+
),
|
118
|
+
'find /dev -type f')
|
133
119
|
|
134
120
|
expect_command(host.find(
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
)
|
121
|
+
paths: '/dev',
|
122
|
+
type: 'symlinks'
|
123
|
+
),
|
124
|
+
'find /dev -type l')
|
140
125
|
|
141
126
|
expect_command(host.find(
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
)
|
127
|
+
paths: '/dev',
|
128
|
+
type: 'block'
|
129
|
+
),
|
130
|
+
'find /dev -type b')
|
147
131
|
|
148
132
|
expect_command(host.find(
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
)
|
133
|
+
paths: '/dev',
|
134
|
+
type: 'character'
|
135
|
+
),
|
136
|
+
'find /dev -type c')
|
154
137
|
|
155
138
|
expect_command(host.find(
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
)
|
139
|
+
paths: '/dev',
|
140
|
+
type: 'pipe'
|
141
|
+
),
|
142
|
+
'find /dev -type p')
|
161
143
|
|
162
144
|
expect_command(host.find(
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
)
|
145
|
+
paths: '/dev',
|
146
|
+
type: 'socket'
|
147
|
+
),
|
148
|
+
'find /dev -type s')
|
168
149
|
end
|
169
150
|
end
|