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
|
# frozen_string_literal: true
require_relative 'test_helper'
# FakeFS safe test class
class SafeTest < Minitest::Test
def teardown
FakeFS.deactivate!
FakeFS::FileSystem.clear
end
def test_FakeFS_activated_is_accurate
2.times do
FakeFS.deactivate!
refute FakeFS.activated?
FakeFS.activate!
assert FakeFS.activated?
end
end
def test_FakeFS_method_does_not_intrude_on_global_namespace
path = 'file.txt'
FakeFS do
File.open(path, 'w') { |f| f.write 'Yatta!' }
assert File.exist?(path)
end
refute File.exist?(path)
end
def test_FakeFS_method_presents_persistent_fs
path = 'file.txt'
FakeFS do
File.open(path, 'w') { |f| f.write 'Yatta!' }
assert File.exist?(path)
end
refute File.exist?(path)
FakeFS do
assert File.exist?(path)
end
end
def test_FakeFS_fresh_method_presents_fresh_fs
path = 'file.txt'
FakeFS do
File.open(path, 'w') { |f| f.write 'Yatta!' }
assert File.exist?(path)
end
refute File.exist?(path)
FakeFS.with_fresh do
refute File.exist?(path)
end
end
def test_FakeFS_clear_method_clears_fs
path = 'file.txt'
FakeFS do
File.open(path, 'w') { |f| f.write 'Yatta!' }
assert File.exist?(path)
end
refute File.exist?(path)
FakeFS.clear!
FakeFS do
refute File.exist?(path)
end
end
def test_FakeFS_method_returns_value_of_yield
result = FakeFS do
File.open('myfile.txt', 'w') { |f| f.write 'Yatta!' }
File.read('myfile.txt')
end
assert_equal result, 'Yatta!'
end
def test_FakeFS_method_does_not_deactivate_FakeFS_if_already_activated
FakeFS.activate!
FakeFS {}
assert FakeFS.activated?
end
def test_FakeFS_method_can_be_nested
FakeFS do
assert FakeFS.activated?
FakeFS do
assert FakeFS.activated?
end
assert FakeFS.activated?
end
refute FakeFS.activated?
end
def test_FakeFS_method_can_be_nested_with_FakeFS_without
FakeFS do
assert FakeFS.activated?
FakeFS.without do
refute FakeFS.activated?
end
assert FakeFS.activated?
end
refute FakeFS.activated?
end
def test_FakeFS_method_deactivates_FakeFS_when_block_raises_exception
begin
FakeFS do
raise 'boom!'
end
rescue StandardError
'Nothing to do'
end
refute FakeFS.activated?
end
def test_FakeFS_activate_method_stubs_File_class_but_not_IO
old_file = ::File
old_io = ::IO
::FakeFS.activate!
refute_equal old_file, ::File
assert_equal old_io, ::IO
ensure
::FakeFS.deactivate!
end
def test_FakeFS_activate_method_stubs_IO_class_if_explicity_asked
old_file = ::File
old_io = ::IO
::FakeFS.activate!(io_mocks: true)
refute_equal old_file, ::File
refute_equal old_io, ::IO
ensure
::FakeFS.deactivate!
end
def test_FakeFS_deactivate_restore_original_File_and_IO_classes
old_file = ::File
old_io = ::IO
::FakeFS.activate!(io_mocks: true)
::FakeFS.deactivate!
assert_equal old_file, ::File
assert_equal old_io, ::IO
ensure
::FakeFS.deactivate!
end
end
|