Sha256: d6e921d140d938c96ab0951ac72b01e3a741585c10faa99213282ff3d8d46a58
Contents?: true
Size: 1.89 KB
Versions: 8
Compression:
Stored size: 1.89 KB
Contents
require File.expand_path(File.dirname(__FILE__) + '/spec_helper') describe "Rapnd::Notification" do before do @notification = Rapnd::Notification.new(:badge => 99, :alert => 'Big test time', :custom_properties => {:key => 'This is a test!', :spid => 1234}, :device_token => '1234 5') end it 'removes whitespace from the device token' do @notification.device_token.should == '12345' end it 'sets a content-available' do @notification = Rapnd::Notification.new(:alert => 'Big test time', :content_available => "Yes!", :custom_properties => {:key => 'This is a test!', :spid => 1234}, :device_token => '1234 5') @notification.payload.should == {:aps => {:alert => "Big test time", :'content-available' => "Yes!"}, :key => "This is a test!", :spid => 1234} end it 'does not set the body key if only an alert is passed' do @notification = Rapnd::Notification.new(:alert => 'Big test time', :custom_properties => {:key => 'This is a test!', :spid => 1234}, :device_token => '1234 5') @notification.payload.should == {:aps => {:alert => "Big test time"}, :key => "This is a test!", :spid => 1234} end it "automatically assigns hash variables to instance variables" do @notification.badge.should == 99 @notification.custom_properties.should == {:key => 'This is a test!', :spid => 1234} end it 'creates a hash payload' do @notification.payload.should == {:aps=>{:badge=>99, :alert=>"Big test time"}, :key => "This is a test!", :spid => 1234} end it 'jsonifies the hash payload' do ActiveSupport::JSON.decode(@notification.json_payload).should == {"aps"=>{"badge"=>99, "alert"=>"Big test time"}, "key"=>"This is a test!", "spid"=>1234} end it 'turns into bytes sensibly' do @notification.to_bytes.should == "\x00\x00 \x124P\x00P{\"aps\":{\"badge\":99,\"alert\":\"Big test time\"},\"key\":\"This is a test!\",\"spid\":1234}" end end
Version data entries
8 entries across 8 versions & 2 rubygems