File: file.rb

package info (click to toggle)
mruby 3.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,584 kB
  • sloc: ansic: 51,933; ruby: 29,510; yacc: 7,077; cpp: 517; makefile: 51; sh: 42
file content (396 lines) | stat: -rw-r--r-- 12,545 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
##
# File Test

MRubyIOTestUtil.io_test_setup

def assert_dirname_with_level(path, results)
  assert('dirname with level') do
    assert_raise(ArgumentError) { File.dirname path, -1 }
    results.each do |level, expect|
      assert_equal expect, File.dirname(path, level)
    end
  end
end

assert('File.class', '15.2.21') do
  assert_equal Class, File.class
end

assert('File.superclass', '15.2.21.2') do
  assert_equal IO, File.superclass
end

assert('File#initialize', '15.2.21.4.1') do
  io = File.open($mrbtest_io_rfname, "r")
  assert_nil io.close
  assert_raise IOError do
    io.close
  end
end

assert('File#path', '15.2.21.4.2') do
  io = File.open($mrbtest_io_rfname, "r")
  assert_equal $mrbtest_io_msg, io.read
  assert_equal $mrbtest_io_rfname, io.path
  io.close
  assert_equal $mrbtest_io_rfname, io.path
  assert_true io.closed?
end

assert('File.basename') do
  assert_equal '/', File.basename('//')
  assert_equal 'a', File.basename('/a/')
  assert_equal 'b', File.basename('/a/b')
  assert_equal 'b', File.basename('../a/b')
  assert_raise(ArgumentError) { File.basename("/a/b\0") }
end

assert('File.dirname') do
  assert_equal '.',    File.dirname('')
  assert_equal '.',    File.dirname('a')
  assert_equal '/',    File.dirname('/a')
  assert_equal '/',    File.dirname('/a/')
  assert_equal 'a',    File.dirname('a/b')
  assert_equal 'a',    File.dirname('a/b/')
  assert_equal 'a/b',  File.dirname('a/b/c')
  assert_equal '/a',   File.dirname('/a/b')
  assert_equal '/a',   File.dirname('/a/b/')
  assert_equal '/a/b', File.dirname('/a/b/c')
  assert_equal '/a/b', File.dirname('/a/b/c/')
  assert_equal '/',    File.dirname('/a//')
  assert_equal '/a',   File.dirname('/a//b')
  assert_equal '/a/b', File.dirname('/a/b//c//')
end

assert('File.dirname (with level)') do
  assert_dirname_with_level '', { 0 => '.', 1 => '.', 2 => '.' }
  assert_dirname_with_level 'a', { 0 => 'a', 1 => '.', 2 => '.' }
  assert_dirname_with_level '/a', { 0 => '/a', 1 => '/', 2 => '/' }
  assert_dirname_with_level '/a/', { 0 => '/a/', 1 => '/', 2 => '/' }
  assert_dirname_with_level 'a/b', { 0 => 'a/b', 1 => 'a', 2 => '.' }
  assert_dirname_with_level 'a/b/', { 0 => 'a/b/', 1 => 'a', 2 => '.' }
  assert_dirname_with_level 'a/b/c', { 0 => 'a/b/c', 1 => 'a/b', 2 => 'a' }
  assert_dirname_with_level 'a/b/c/d', { 0 => 'a/b/c/d', 1 => 'a/b/c', 2 => 'a/b' }
end

unless MRubyIOTestUtil.win?
  assert('File.dirname (not Windows)') do
    assert_equal '/a',   File.dirname('//a//b/')
  end
else
  assert('File.dirname (on Windows)') do
    assert_equal 'c:.',           File.dirname('c:')
    assert_equal 'c:.',           File.dirname('c:a')
    assert_equal 'c:.',           File.dirname('c:a/')
    assert_equal 'c:a',           File.dirname('c:a/b')
    assert_equal 'c:/',           File.dirname('c:/')
    assert_equal 'c:/',           File.dirname('c:/a')
    assert_equal 'c:/',           File.dirname('c:/a/')
    assert_equal 'c:/a',          File.dirname('c:/a/b')
    assert_equal '//.',           File.dirname('//.')
    assert_equal '//.',           File.dirname('//./')
    assert_equal '//./a',         File.dirname('//./a')
    assert_equal '//./a',         File.dirname('//./a/')
    assert_equal '//./a',         File.dirname('//./a/b')
    assert_equal '//./a/b',       File.dirname('//./a/b/c')
    assert_equal '//?',           File.dirname('//?/')
    assert_equal '//?/a',         File.dirname('//?/a')
    assert_equal '//?/a',         File.dirname('//?/a/')
    assert_equal '//?/a',         File.dirname('//?/a/b')
    assert_equal '//host1',       File.dirname('//host1/')
    assert_equal '//host1/a',     File.dirname('//host1/a')
    assert_equal '//host1/a',     File.dirname('//host1/a/')
    assert_equal '//host1/a',     File.dirname('//host1/a/b')
  end
end

assert('File.extname') do
  assert_equal '.txt', File.extname('foo/foo.txt')
  assert_equal '.gz', File.extname('foo/foo.tar.gz')
  assert_equal '', File.extname('foo/bar')
  assert_equal '', File.extname('foo/.bar')
  assert_equal '', File.extname('foo.txt/bar')
  assert_equal '', File.extname('.foo')
  assert_equal '.rb', File.extname('.a.rb')
  assert_equal '.', File.extname('foo.')
end

assert('File#flock') do
  f = File.open $mrbtest_io_rfname
  begin
    assert_equal(f.flock(File::LOCK_SH), 0)
    assert_equal(f.flock(File::LOCK_UN), 0)
    assert_equal(f.flock(File::LOCK_EX | File::LOCK_NB), 0)
    assert_equal(f.flock(File::LOCK_UN), 0)
  rescue NotImplementedError => e
    skip e.message
  ensure
    f.close
  end
end

assert('File#atime') do
  begin
    File.open("#{$mrbtest_io_wfname}.atime", 'w') do |f|
      assert_equal Time, f.mtime.class
      File.open("#{$mrbtest_io_wfname}.atime", 'r') do |f2|
        assert_equal true, f.atime == f2.atime
      end
    end
  ensure
    File.delete("#{$mrbtest_io_wfname}.atime")
  end
end

assert('File#ctime') do
  begin
    File.open("#{$mrbtest_io_wfname}.ctime", 'w') do |f|
      assert_equal Time, f.ctime.class
      File.open("#{$mrbtest_io_wfname}.ctime", 'r') do |f2|
        assert_equal true, f.ctime == f2.ctime
      end
    end
  ensure
    File.delete("#{$mrbtest_io_wfname}.ctime")
  end
end

assert('File#mtime') do
  begin
    File.open("#{$mrbtest_io_wfname}.mtime", 'w') do |f|
      assert_equal Time, f.mtime.class
      File.open("#{$mrbtest_io_wfname}.mtime", 'r') do |f2|
        assert_equal true, f.mtime == f2.mtime
      end
    end
  ensure
    File.delete("#{$mrbtest_io_wfname}.mtime")
  end
end

assert('File#size and File#truncate') do
  fname = "#{$mrbtest_io_wfname}.resize"
  begin
    File.open(fname, 'w') do |f|
      assert_equal 0, f.size
      assert_equal 0, f.truncate(100)
      assert_equal 100, f.size
      assert_equal 0, f.pos
      assert_equal 0, f.truncate(5)
      assert_equal 5, f.size
    end
  ensure
    File.delete(fname)
  end
end

assert('File.join') do
  assert_equal "", File.join()
  assert_equal "a", File.join("a")
  assert_equal "/a", File.join("/a")
  assert_equal "a/", File.join("a/")
  assert_equal "a/b/c", File.join("a", "b", "c")
  assert_equal "/a/b/c", File.join("/a", "b", "c")
  assert_equal "a/b/c/", File.join("a", "b", "c/")
  assert_equal "a/b/c", File.join("a/", "/b/", "/c")
  assert_equal "a/b/c", File.join(["a", "b", "c"])
  assert_equal "a/b/c", File.join("a", ["b", ["c"]])
end

assert('File.realpath') do
  dir = MRubyIOTestUtil.mkdtemp("mruby-io-test.XXXXXX")
  begin
    sep = File::ALT_SEPARATOR || File::SEPARATOR
    relative_path = "#{File.basename(dir)}#{sep}realpath_test"
    path = "#{MRubyIOTestUtil.getwd}#{sep}#{relative_path}"
    File.open(path, "w"){}
    assert_equal path, File.realpath(relative_path)

    unless MRubyIOTestUtil.win?
      path1 = File.realpath($mrbtest_io_rfname)
      path2 = File.realpath($mrbtest_io_symlinkname)
      assert_equal path1, path2
    end
  ensure
    File.delete path rescue nil
    MRubyIOTestUtil.rmdir dir
  end

  assert_raise(ArgumentError) { File.realpath("TO\0DO") }
end

assert("File.readlink") do
  begin
    exp = File.basename($mrbtest_io_rfname)
    act = File.readlink($mrbtest_io_symlinkname)
    assert_equal exp, act
  rescue NotImplementedError => e
    skip e.message
  end
end

assert("File.readlink fails with non-symlink") do
  skip "readlink is not supported on this platform" if MRubyIOTestUtil.win?
  begin
    e2 = nil
    assert_raise(RuntimeError) {
      begin
        File.readlink($mrbtest_io_rfname)
      rescue => e
        if Object.const_defined?(:SystemCallError) and e.kind_of?(SystemCallError)
          raise RuntimeError, "SystemCallError converted to RuntimeError"
        end
        raise e
      rescue NotImplementedError => e
        e2 = e
      end
    }
    raise e2 if e2
  rescue NotImplementedError => e
    skip e.message
  end
end

if MRubyIOTestUtil.win?
  assert('File.expand_path (for windows)') do
    drive = MRubyIOTestUtil.getwd[0, 2]
    alt1 = (drive.downcase != "c:") ? "c:" : "x:"
    alt2 = (drive.downcase != "d:") ? "d:" : "y:"

    assert_equal "#{drive}/",    File.expand_path("..", "/tmp"),       "parent path with base_dir (1)"
    assert_equal "#{drive}/tmp", File.expand_path("..", "/tmp/mruby"), "parent path with base_dir (2)"

    assert_equal "#{drive}/home", File.expand_path("/home"),      "absolute"
    assert_equal "#{drive}/home", File.expand_path("/home", "."), "absolute with base_dir"

    assert_equal "#{drive}/hoge", File.expand_path("/tmp/..//hoge")
    assert_equal "//tmp/hoge", File.expand_path("////tmp/..///////hoge")

    assert_equal "#{drive}/", File.expand_path("../../../..", "/")

    assert_equal "#{drive}/", File.expand_path(([".."] * 100).join("/"))

    assert_equal "#{alt1}/x/y", File.expand_path("#{alt1}y", "/x")
    assert_equal "#{alt2}/x/y", File.expand_path("#{alt2}y", "/x")
    assert_equal "#{alt1}/x", File.expand_path("#{alt1}x", "#{alt2}y")
    assert_equal "#{alt1}/y/x", File.expand_path("#{alt1}x", "./y")
  end
else
  assert('File.expand_path') do
    assert_equal "/",    File.expand_path("..", "/tmp"),       "parent path with base_dir (1)"
    assert_equal "/tmp", File.expand_path("..", "/tmp/mruby"), "parent path with base_dir (2)"

    assert_equal "/home", File.expand_path("/home"),      "absolute"
    assert_equal "/home", File.expand_path("/home", "."), "absolute with base_dir"

    assert_equal "/hoge", File.expand_path("/tmp/..//hoge")
    assert_equal "/hoge", File.expand_path("////tmp/..///////hoge")

    assert_equal "/", File.expand_path("../../../..", "/")

    assert_equal "/", File.expand_path(([".."] * 100).join("/"))

    assert_equal "/x/c:y", File.expand_path("c:y", "/x")
  end
end

assert('File.expand_path (with getenv(3))') do
  skip unless MRubyIOTestUtil.const_defined?(:ENV_HOME)

  assert_equal MRubyIOTestUtil::ENV_HOME, File.expand_path("~/"),      "home"
  assert_equal MRubyIOTestUtil::ENV_HOME, File.expand_path("~/", "/"), "home with base_dir"

  assert_equal "#{MRubyIOTestUtil::ENV_HOME}/user", File.expand_path("user", MRubyIOTestUtil::ENV_HOME), "relative with base_dir"
end

if MRubyIOTestUtil.win?
  assert('File.absolute_path? (for windows)') do
    assert_true File.absolute_path?("c:/")
    assert_true File.absolute_path?("c:/a")
    assert_true File.absolute_path?("//")
    assert_true File.absolute_path?("//?")
    assert_true File.absolute_path?("//?/")
    assert_false File.absolute_path?("")
    assert_false File.absolute_path?("/")
    assert_false File.absolute_path?("c:")
  end
else
  assert('File.absolute_path?') do
    assert_true File.absolute_path?("/")
    assert_true File.absolute_path?("/a")
    assert_true File.absolute_path?("/a/b/")
    assert_false File.absolute_path?("")
    assert_false File.absolute_path?("a")
    assert_false File.absolute_path?("a/b/")
    assert_false File.absolute_path?("c:/")
  end
end

assert('File.path') do
  assert_equal "", File.path("")
  assert_equal "a/b/c", File.path("a/b/c")
  assert_equal "a/../b/./c", File.path("a/../b/./c")
  assert_raise(TypeError) { File.path(nil) }
  assert_raise(TypeError) { File.path(123) }
end

assert('File.symlink') do
  target_name = "/usr/bin"
  if !File.exist?(target_name)
    skip("target directory of File.symlink is not found")
  end

  begin
    tmpdir = MRubyIOTestUtil.mkdtemp("mruby-io-test.XXXXXX")
  rescue => e
    skip e.message
  end

  symlink_name = "#{tmpdir}/test-bin-dummy"
  begin
    assert_equal 0, File.symlink(target_name, symlink_name)
    assert_equal true, File.symlink?(symlink_name)
  rescue NotImplementedError => e
    skip e.message
  ensure
    File.delete symlink_name rescue nil
    MRubyIOTestUtil.rmdir tmpdir rescue nil
  end
end

assert('File.chmod') do
  File.open("#{$mrbtest_io_wfname}.chmod-test", 'w') {}
  begin
    assert_equal 1, File.chmod(0400, "#{$mrbtest_io_wfname}.chmod-test")
  ensure
    File.delete("#{$mrbtest_io_wfname}.chmod-test")
  end
end

assert('File.open with "x" mode') do
  File.unlink $mrbtest_io_wfname rescue nil
  assert_nothing_raised do
    File.open($mrbtest_io_wfname, "wx") {}
  end
  assert_raise(RuntimeError) do
    File.open($mrbtest_io_wfname, "wx") {}
  end

  File.unlink $mrbtest_io_wfname rescue nil
  assert_nothing_raised do
    File.open($mrbtest_io_wfname, "w+x") {}
  end
  assert_raise(RuntimeError) do
    File.open($mrbtest_io_wfname, "w+x") {}
  end

  assert_raise(ArgumentError) do
    File.open($mrbtest_io_wfname, "rx") {}
  end

  assert_raise(ArgumentError) do
    File.open($mrbtest_io_wfname, "ax") {}
  end
end

MRubyIOTestUtil.io_test_cleanup