-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsteps.rb
72 lines (58 loc) · 1.69 KB
/
steps.rb
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
# frozen_string_literal: true
# SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
# SPDX-License-Identifier: MIT
require 'tmpdir'
require 'slop'
require 'English'
require_relative '../../lib/erc20'
Before do
@cwd = Dir.pwd
@dir = Dir.mktmpdir('test')
FileUtils.mkdir_p(@dir)
Dir.chdir(@dir)
@opts =
Slop.parse ['-v'] do |o|
o.bool '-v', '--verbose'
end
end
After do
Dir.chdir(@cwd)
FileUtils.rm_rf(@dir)
end
Given(/^I have a "([^"]*)" file with content:$/) do |file, text|
FileUtils.mkdir_p(File.dirname(file)) unless File.exist?(file)
File.write(file, text.gsub('\\xFF', 0xFF.chr))
end
When(%r{^I run bin/erc20 with "([^"]*)"$}) do |arg|
home = File.join(File.dirname(__FILE__), '../..')
@stdout = `ruby -I#{home}/lib #{home}/bin/erc20 #{arg}`
@exitstatus = $CHILD_STATUS.exitstatus
end
Then(/^Stdout contains "([^"]*)"$/) do |txt|
raise "STDOUT doesn't contain '#{txt}':\n#{@stdout}" unless @stdout.include?(txt)
end
Then(/^Stdout is empty$/) do
raise "STDOUT is not empty:\n#{@stdout}" unless @stdout == ''
end
Then(/^Exit code is zero$/) do
raise "Non-zero exit #{@exitstatus}:\n#{@stdout}" unless @exitstatus.zero?
end
Then(/^Exit code is not zero$/) do
raise 'Zero exit code' if @exitstatus.zero?
end
When(/^I run bash with "([^"]*)"$/) do |text|
FileUtils.copy_entry(@cwd, File.join(@dir, 'erc20'))
@stdout = `#{text}`
@exitstatus = $CHILD_STATUS.exitstatus
end
When(/^I run bash with:$/) do |text|
FileUtils.copy_entry(@cwd, File.join(@dir, 'erc20'))
@stdout = `#{text}`
@exitstatus = $CHILD_STATUS.exitstatus
end
Given(/^It is Unix$/) do
pending if Gem.win_platform?
end
Given(/^It is Windows$/) do
pending unless Gem.win_platform?
end