82 lines
2.2 KiB
Ruby
82 lines
2.2 KiB
Ruby
require 'spec_helper'
|
|
require 'stringio'
|
|
|
|
describe AsciicastParams do
|
|
|
|
describe '.build' do
|
|
subject { described_class.build(input, user_agent) }
|
|
|
|
let(:input) { {
|
|
meta: StringIO.new(meta.to_json),
|
|
stdout: stdout_data_file,
|
|
stdout_timing: stdout_timing_file,
|
|
} }
|
|
|
|
let(:user_agent) { 'asciinema/0.9.7' }
|
|
|
|
let(:stdout_data_file) { double('stdout_data_file') }
|
|
let(:stdout_timing_file) { double('stdout_timing_file') }
|
|
|
|
let(:meta) { {
|
|
command: '/bin/bash',
|
|
duration: 11.146430015563965,
|
|
shell: '/bin/zsh',
|
|
term: { lines: 26, columns: 96, type: 'screen-256color' },
|
|
title: 'bashing :)',
|
|
user_token: 'f33e6188-f53c-11e2-abf4-84a6c827e88b',
|
|
username: 'kill',
|
|
} }
|
|
|
|
let(:expected_attrs) { {
|
|
command: '/bin/bash',
|
|
duration: 11.146430015563965,
|
|
shell: '/bin/zsh',
|
|
stdin_data: nil,
|
|
stdin_timing: nil,
|
|
stdout_data: stdout_data_file,
|
|
stdout_timing: stdout_timing_file,
|
|
terminal_columns: 96,
|
|
terminal_lines: 26,
|
|
terminal_type: 'screen-256color',
|
|
title: 'bashing :)',
|
|
user: expected_user,
|
|
user_agent: 'asciinema/0.9.7',
|
|
} }
|
|
|
|
let(:expected_user) { existing_user }
|
|
let(:existing_user) { User.new }
|
|
|
|
before do
|
|
allow(User).to receive(:for_api_token).
|
|
with('f33e6188-f53c-11e2-abf4-84a6c827e88b') { existing_user }
|
|
end
|
|
|
|
it { should eq(expected_attrs) }
|
|
|
|
context "when given api token is not found" do
|
|
let(:expected_user) { dummy_user }
|
|
let(:dummy_user) { User.new }
|
|
|
|
before do
|
|
allow(User).to receive(:for_api_token).
|
|
with('f33e6188-f53c-11e2-abf4-84a6c827e88b') { nil }
|
|
allow(User).to receive(:create_dummy).
|
|
with('f33e6188-f53c-11e2-abf4-84a6c827e88b', 'kill') { dummy_user }
|
|
end
|
|
|
|
it { should eq(expected_attrs) }
|
|
end
|
|
|
|
context "when uname given" do
|
|
before do
|
|
meta[:uname] = 'Linux 3.9.9-302.fc19.x86_64'
|
|
expected_attrs[:uname] = 'Linux 3.9.9-302.fc19.x86_64'
|
|
expected_attrs.delete(:user_agent)
|
|
end
|
|
|
|
it { should eq(expected_attrs) }
|
|
end
|
|
end
|
|
|
|
end
|