Sha256: 3f8bd6ba07e3e6b9da95ae9df42de5a2252518650fe6134cca59fb71425f0619

Contents?: true

Size: 1.83 KB

Versions: 1

Compression:

Stored size: 1.83 KB

Contents

require 'spec_helper'
require 'grocer/push_connection'

describe Grocer::PushConnection do
  subject { described_class.new(options) }
  let(:options) { { certificate: '/path/to/cert.pem' } }
  let(:connection) { stub('Connection') }

  it 'delegates reading to the Connection' do
    Grocer::Connection.any_instance.expects(:read).with(42, 'lolIO')
    subject.read(42, 'lolIO')
  end

  it 'delegates writing to the Connection' do
    Grocer::Connection.any_instance.expects(:write).with('Note Eye Fly')
    subject.write('Note Eye Fly')
  end

  it 'can be initialized with a certificate' do
    subject.certificate.should == '/path/to/cert.pem'
  end

  it 'can be initialized with a passphrase' do
    options[:passphrase] = 'open sesame'
    subject.passphrase.should == 'open sesame'
  end

  it 'defaults to Apple push gateway in production environment' do
    Grocer.stubs(:env).returns('production')
    subject.gateway.should == 'gateway.push.apple.com'
  end

  it 'defaults to the sandboxed Apple push gateway in development environment' do
    Grocer.stubs(:env).returns('development')
    subject.gateway.should == 'gateway.sandbox.push.apple.com'
  end

  it 'defaults to the sandboxed Apple push gateway in test environment' do
    Grocer.stubs(:env).returns('test')
    subject.gateway.should == 'gateway.sandbox.push.apple.com'
  end

  it 'defaults to the sandboxed Apple push gateway for other random values' do
    Grocer.stubs(:env).returns('random')
    subject.gateway.should == 'gateway.sandbox.push.apple.com'
  end

  it 'can be initialized with a gateway' do
    options[:gateway] = 'gateway.example.com'
    subject.gateway.should == 'gateway.example.com'
  end

  it 'defaults to 2195 as the port' do
    subject.port.should == 2195
  end

  it 'can be initialized with a port' do
    options[:port] = 443
    subject.port.should == 443
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
grocer-0.0.6 spec/grocer/push_connection_spec.rb