Sha256: 4dc0f032494ad7d85f898e14b03635e5d17d4cc42e7d5542bd5f37dcced8262e
Contents?: true
Size: 1.57 KB
Versions: 9
Compression:
Stored size: 1.57 KB
Contents
require 'functional_spec_helper' describe 'Synchronization' do let(:timeout) { 10 } let(:app) { Rpush::Gcm::App.new } def wait_for_num_dispatchers(num) Timeout.timeout(timeout) do until Rpush::Daemon::AppRunner.num_dispatchers_for_app(app) == num sleep 0.1 end end end before do app.name = 'test' app.auth_key = 'abc123' app.connections = 2 app.certificate = TEST_CERT_WITH_PASSWORD app.password = 'fubar' app.environment = 'sandbox' app.save! Rpush.embed wait_for_num_dispatchers(app.connections) end after { Timeout.timeout(timeout) { Rpush.shutdown } } it 'increments the number of dispatchers' do app.connections += 1 app.save! Rpush.sync wait_for_num_dispatchers(app.connections) end it 'decrements the number of dispatchers' do app.connections -= 1 app.save! Rpush.sync wait_for_num_dispatchers(app.connections) end it 'stops a deleted app' do app.destroy Rpush.sync expect(Rpush::Daemon::AppRunner.app_running?(app)).to eq(false) end it 'restarts an app when the certificate is changed' do app.certificate = TEST_CERT app.password = nil app.save! Rpush.sync running_app = Rpush::Daemon::AppRunner.app_with_id(app.id) expect(running_app.certificate).to eql(TEST_CERT) end it 'restarts an app when the environment is changed' do app.environment = 'production' app.save! Rpush.sync running_app = Rpush::Daemon::AppRunner.app_with_id(app.id) expect(running_app.environment).to eql('production') end end
Version data entries
9 entries across 9 versions & 1 rubygems