You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/spec/models/asciicast_spec.rb

105 lines
2.6 KiB
Ruby

require 'spec_helper'
describe Asciicast do
let(:asciicast) { Asciicast.new }
describe '.assign_user' do
let(:user) { FactoryGirl.create(:user) }
let(:token) { 'token' }
let!(:asciicast) do
FactoryGirl.create(:asciicast, :user => nil, :user_token => token)
end
subject { Asciicast.assign_user(token, user) }
it 'returns number of updated records' do
subject.should == 1
end
it 'assigns user to matching asciicasts' do
subject
asciicast.reload.user.should == user
end
end
# TODO: create a service for this
describe '#save' do
let(:asciicast) { FactoryGirl.build(:asciicast, :user => user) }
context 'when no user given' do
let(:user) { nil }
it 'calls #assign_user' do
asciicast.should_receive(:assign_user)
asciicast.save
end
end
context 'when user given' do
let(:user) { FactoryGirl.build(:user) }
it "doesn't call #assign_user" do
asciicast.should_not_receive(:assign_user)
asciicast.save
end
end
end
describe '#assign_user' do
let(:user) { FactoryGirl.create(:user) }
let(:asciicast) do
FactoryGirl.create(:asciicast, :user => nil, :user_token => user_token)
end
context 'when user exists with given token' do
let(:user_token) { FactoryGirl.create(:user_token, :user => user).token }
it 'assigns user and resets user_token' do
asciicast.assign_user
asciicast.user.should == user
asciicast.user_token.should be(nil)
end
end
context 'when there is no user with given token' do
let(:user_token) { 'some-foo-bar' }
it 'assigns user' do
asciicast.assign_user
asciicast.user.should be(nil)
end
end
end
describe '#update_snapshot' do
let(:asciicast) { create(:asciicast) }
let(:snapshot) { [[[{ :foo => 'bar' }]]] }
it 'persists the snapshot' do
asciicast.update_snapshot(snapshot)
expect(Asciicast.find(asciicast.id).snapshot).to eq([[[{ 'foo' => 'bar' }]]])
end
end
describe '#stdout' do
let(:stdout) { double('stdout') }
before do
allow(asciicast.stdout_data).to receive(:decompressed) { 'foo' }
allow(asciicast.stdout_timing).to receive(:decompressed) { '123.0 45' }
allow(Stdout).to receive(:new) { stdout }
end
it 'creates a new Stdout instance' do
asciicast.stdout
expect(Stdout).to have_received(:new).with('foo', [[123.0, 45]])
end
it 'returns created Stdout instance' do
expect(asciicast.stdout).to be(stdout)
end
end
end