mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
a6582bea9b
* Remove any "All Rights Reserved" references InSpec is licensed and released under the Apache 2.0 license. This change removes all reference to legacy code files that still had any Copyright or License lines referring to "All Rights Reserved". Signed-off-by: Adam Leff <adam@leff.co> * fix functional tests Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
41 lines
1.2 KiB
Ruby
41 lines
1.2 KiB
Ruby
# encoding: utf-8
|
|
# author: Nolan Davidson
|
|
|
|
module Inspec::Resources
|
|
class OracledbSession < Inspec.resource(1)
|
|
name 'oracledb_session'
|
|
desc 'Use the oracledb_session InSpec resource to test commands against an Oracle database'
|
|
example "
|
|
sql = oracledb_session(user: 'my_user', pass: 'password')
|
|
describe sql.query('SELECT NAME FROM v$database;') do
|
|
its('stdout') { should_not match(/test/) }
|
|
end
|
|
"
|
|
|
|
attr_reader :user, :pass, :host, :sid, :sqlplus_bin
|
|
|
|
def initialize(opts = {})
|
|
@user = opts[:user]
|
|
@pass = opts[:pass]
|
|
@host = opts[:host] || 'localhost'
|
|
@sid = opts[:sid]
|
|
@sqlplus_bin = opts[:sqlplus_bin] || 'sqlplus'
|
|
return skip_resource("Can't run Oracle checks without authentication") if @user.nil? or @pass.nil?
|
|
end
|
|
|
|
def query(q)
|
|
escaped_query = q.gsub(/\\/, '\\\\').gsub(/"/, '\\"')
|
|
cmd = inspec.command("echo \"#{escaped_query}\" | #{@sqlplus_bin} -s #{@user}/#{@pass}@#{@host}/#{@sid}")
|
|
out = cmd.stdout + "\n" + cmd.stderr
|
|
if out.downcase =~ /^error/
|
|
skip_resource("Can't connect to Oracle instance for SQL checks.")
|
|
end
|
|
|
|
cmd
|
|
end
|
|
|
|
def to_s
|
|
'Oracle Session'
|
|
end
|
|
end
|
|
end
|