Sha256: e7ba46d8876cb0b57a3993937026a90251b396b7550c4818aafb1bfff4ec0bfb

Contents?: true

Size: 1.58 KB

Versions: 16

Compression:

Stored size: 1.58 KB

Contents

require File.dirname(__FILE__) + '/../../spec_helper'

describe RequestLogAnalyzer::Database::Connection do
  describe '.from_string' do

    it "should parse a name-value based string" do
      string = 'adapter=sqlite3;database=filename.db'
      RequestLogAnalyzer::Database::Connection.from_string(string).should == {:adapter => 'sqlite3', :database => 'filename.db'}
    end

    it "should parse an URI-based string for SQLite3" do
      string = 'sqlite3://filename.db'
      RequestLogAnalyzer::Database::Connection.from_string(string).should == {:adapter => 'sqlite3', :database => 'filename.db'}
    end

    it "should parse an URI-based string for MySQL" do
      string = 'mysql://localhost.local/database'
      RequestLogAnalyzer::Database::Connection.from_string(string).should == 
              { :adapter => 'mysql', :database => 'database', :host => 'localhost.local' }
    end

    it "should parse an URI-based string for MySQL with only username" do
      string = 'mysql://username@localhost.local/database'
      RequestLogAnalyzer::Database::Connection.from_string(string).should == 
              { :adapter => 'mysql', :database => 'database', :host => 'localhost.local', :username => 'username' }
    end

    it "should parse an URI-based string for MySQL with username and password" do
      string = 'mysql://username:password@localhost.local/database'
      RequestLogAnalyzer::Database::Connection.from_string(string).should == 
              { :adapter => 'mysql', :database => 'database', :host => 'localhost.local', :username => 'username', :password => 'password' }
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
wvanbergen-request-log-analyzer-1.3.0 spec/unit/database/connection_spec.rb
wvanbergen-request-log-analyzer-1.3.1 spec/unit/database/connection_spec.rb
wvanbergen-request-log-analyzer-1.3.2 spec/unit/database/connection_spec.rb
wvanbergen-request-log-analyzer-1.3.3 spec/unit/database/connection_spec.rb
wvanbergen-request-log-analyzer-1.3.4 spec/unit/database/connection_spec.rb
wvanbergen-request-log-analyzer-1.3.5 spec/unit/database/connection_spec.rb
wvanbergen-request-log-analyzer-1.3.6 spec/unit/database/connection_spec.rb
wvanbergen-request-log-analyzer-1.3.7 spec/unit/database/connection_spec.rb
request-log-analyzer-1.3.7 spec/unit/database/connection_spec.rb
request-log-analyzer-1.3.6 spec/unit/database/connection_spec.rb
request-log-analyzer-1.3.5 spec/unit/database/connection_spec.rb
request-log-analyzer-1.3.4 spec/unit/database/connection_spec.rb
request-log-analyzer-1.3.3 spec/unit/database/connection_spec.rb
request-log-analyzer-1.3.2 spec/unit/database/connection_spec.rb
request-log-analyzer-1.3.1 spec/unit/database/connection_spec.rb
request-log-analyzer-1.3.0 spec/unit/database/connection_spec.rb