Skip to content

Commit b67727f

Browse files
committed
Rely on Shellwords.shellescape to escape
1 parent eacba26 commit b67727f

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

spec/spec_helper_acceptance_local.rb

+1-21
Original file line numberDiff line numberDiff line change
@@ -41,25 +41,5 @@ def postgresql_version
4141

4242
def psql(psql_cmd, user = 'postgres', exit_codes = [0, 1], &block)
4343
psql = "psql #{psql_cmd}"
44-
LitmusHelper.instance.run_shell("cd /tmp; su #{shellescape(user)} -c #{shellescape(psql)}", acceptable_exit_codes: exit_codes, &block)
45-
end
46-
47-
def shellescape(str)
48-
str = str.to_s
49-
50-
# An empty argument will be skipped, so return empty quotes.
51-
return "''" if str.empty?
52-
53-
str = str.dup
54-
55-
# Treat multibyte characters as is. It is caller's responsibility
56-
# to encode the string in the right encoding for the shell
57-
# environment.
58-
str.gsub!(%r{([^A-Za-z0-9_\-.,:\/@\n])}, '\\\\\\1')
59-
60-
# A LF cannot be escaped with a backslash because a backslash + LF
61-
# combo is regarded as line continuation and simply ignored.
62-
str.gsub!(%r{\n}, "'\n'")
63-
64-
str
44+
LitmusHelper.instance.run_shell("cd /tmp; su #{Shellwords.shellescape(user)} -c #{Shellwords.shellescape(psql)}", acceptable_exit_codes: exit_codes, &block)
6545
end

0 commit comments

Comments
 (0)