spec/lib/gdk/command/psql_geo_spec.rb (33 lines of code) (raw):
# frozen_string_literal: true
RSpec.describe GDK::Command::PsqlGeo do
before do
stub_pg_bindir
end
context 'with no extra arguments' do
it 'uses the development database by default' do
expect_exec %w[psql-geo],
['/usr/local/bin/psql',
"--host=#{GDK.config.postgresql.geo.host}",
"--port=#{GDK.config.postgresql.geo.port}",
'--dbname=gitlabhq_geo_development',
{ chdir: GDK.root }]
end
end
context 'with extra arguments' do
it 'pass extra arguments to the psql cli application' do
expect_exec ['psql-geo', '-w', '-d', 'gitlabhq_test', '-c', 'select 1'],
['/usr/local/bin/psql',
"--host=#{GDK.config.postgresql.geo.host}",
"--port=#{GDK.config.postgresql.geo.port}",
'--dbname=gitlabhq_geo_development',
'-w',
'-d', 'gitlabhq_test',
'-c', 'select 1',
{ chdir: GDK.root }]
end
end
def expect_exec(input, cmdline)
expect(subject).to receive(:exec).with(*cmdline)
input.shift
subject.run(input)
end
end