Sha256: e222f623f6014840051e97b0131a88bb47247201c5f8473b0abcc9dddf096d4c

Contents?: true

Size: 1.5 KB

Versions: 2

Compression:

Stored size: 1.5 KB

Contents

if defined?(Devise)
  require 'securerandom'

  module Bbq
    module Devise
      attr_accessor :devise_authentication_key, :email, :password, :scope

      def initialize_devise
        unless @devise_initialized
          self.devise_authentication_key = ::Devise.authentication_keys.first
          self.email = options[devise_authentication_key.to_sym] || Bbq::Devise.next_email
          self.password = options[:password] || Bbq::Devise.next_password
          self.scope = ::Devise.mappings.first.second.singular.to_s
          @devise_initialized = true
        end
      end

      def register
        initialize_devise
        visit send("new_#{scope}_registration_path")
        fill_in "#{scope}_#{devise_authentication_key}", :with => @email
        fill_in "#{scope}_password", :with => @password
        fill_in "#{scope}_password_confirmation", :with => @password
        find(:xpath, "//input[@name='commit']").click
      end

      def login
        initialize_devise
        visit send("new_#{scope}_session_path")
        fill_in "#{scope}_#{devise_authentication_key}", :with => @email
        fill_in "#{scope}_password", :with => @password
        find(:xpath, "//input[@name='commit']").click
      end

      def logout
        visit send("destroy_#{scope}_session_path")
      end

      def register_and_login
        register
      end

      def self.next_email
        "#{SecureRandom.hex(3)}@example.com"
      end

      def self.next_password
        SecureRandom.hex(8)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bbq-0.0.2 lib/bbq/devise.rb
bbq-0.0.2.beta.3 lib/bbq/devise.rb