forked from External/greenlight
add more model tests
This commit is contained in:
@ -1,14 +1,19 @@
|
||||
require "rails_helper"
|
||||
require 'bigbluebutton_api'
|
||||
|
||||
describe Room, type: :model do
|
||||
before { @room = create(:room) }
|
||||
|
||||
before {
|
||||
@user = create(:user)
|
||||
@room = @user.main_room
|
||||
}
|
||||
|
||||
context 'validations' do
|
||||
it { should validate_presence_of :name }
|
||||
it { should validate_presence_of(:name) }
|
||||
end
|
||||
|
||||
context 'associations' do
|
||||
it { should belong_to(:owner).class_name("User") }
|
||||
it { should belong_to(:owner).class_name("User").with_foreign_key("user_id") }
|
||||
end
|
||||
|
||||
context '#setup' do
|
||||
@ -24,4 +29,113 @@ describe Room, type: :model do
|
||||
end
|
||||
end
|
||||
|
||||
context "#invite_path" do
|
||||
it "should have correct invite path" do
|
||||
expect(@room.invite_path).to eq("/#{@room.uid}")
|
||||
end
|
||||
end
|
||||
|
||||
context "#owned_by?" do
|
||||
it "should return true for correct owner" do
|
||||
expect(@room.owned_by?(@user)).to be true
|
||||
end
|
||||
|
||||
it "should return false for incorrect owner" do
|
||||
expect(@room.owned_by?(create(:user))).to be false
|
||||
end
|
||||
end
|
||||
|
||||
context "#is_running?" do
|
||||
it "should return false when not running" do
|
||||
expect(@room.is_running?).to be false
|
||||
end
|
||||
|
||||
it "should return true when running" do
|
||||
allow_any_instance_of(BigBlueButton::BigBlueButtonApi).to receive(:is_meeting_running?).and_return(true)
|
||||
expect(@room.is_running?).to be true
|
||||
end
|
||||
end
|
||||
|
||||
context "#start_session" do
|
||||
it "should update latest session info" do
|
||||
allow_any_instance_of(BigBlueButton::BigBlueButtonApi).to receive(:create_meeting).and_return(true)
|
||||
|
||||
expect{
|
||||
@room.start_session
|
||||
}.to change {
|
||||
@room.sessions
|
||||
}.by(1)
|
||||
|
||||
expect(@room.last_session.utc.to_i).to eq(Time.now.to_i)
|
||||
end
|
||||
end
|
||||
|
||||
context "#join_path" do
|
||||
it "should return correct join URL for user" do
|
||||
allow_any_instance_of(BigBlueButton::BigBlueButtonApi).to receive(:get_meeting_info).and_return({
|
||||
attendeePW: "testpass"
|
||||
})
|
||||
|
||||
endpoint = Rails.configuration.bigbluebutton_endpoint
|
||||
secret = Rails.configuration.bigbluebutton_secret
|
||||
fullname = "fullName=Example"
|
||||
html = if Rails.configuration.html5_enabled then "&joinViaHtml5=true" else "" end
|
||||
meetingID = "&meetingID=#{@room.bbb_id}"
|
||||
password = "&password=testpass"
|
||||
|
||||
query = fullname + html + meetingID + password
|
||||
checksum_string = "join#{query + secret}"
|
||||
|
||||
checksum = OpenSSL::Digest.digest('sha1', checksum_string).unpack("H*").first
|
||||
|
||||
expect(@room.join_path("Example")).to eql(
|
||||
"#{endpoint}join?#{query}&checksum=#{checksum}"
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
context "#notify_waiting" do
|
||||
it "should broadcast to waiting channel with started action" do
|
||||
expect{
|
||||
@room.notify_waiting
|
||||
}.to have_broadcasted_to("#{@room.uid}_waiting_channel").with(a_hash_including(action: "started"))
|
||||
end
|
||||
end
|
||||
|
||||
context "#participants" do
|
||||
it "should link participants to accounts" do
|
||||
user1 = create(:user)
|
||||
user2 = create(:user)
|
||||
|
||||
allow_any_instance_of(BigBlueButton::BigBlueButtonApi).to receive(:get_meeting_info).and_return({
|
||||
attendees: [
|
||||
{userID: user1.uid, fullName: user1.name},
|
||||
{userID: "non-matching-uid", fullName: "Guest User"},
|
||||
{userID: user2.uid, fullName: user2.name}
|
||||
]
|
||||
})
|
||||
|
||||
expect(@room.participants).to contain_exactly(user1, nil, user2)
|
||||
end
|
||||
end
|
||||
|
||||
context "#recordings" do
|
||||
it "should properly find meeting recordings" do
|
||||
allow_any_instance_of(BigBlueButton::BigBlueButtonApi).to receive(:get_recordings).and_return({
|
||||
recordings: [
|
||||
{
|
||||
name: "Example",
|
||||
playback: {
|
||||
format: "presentation"
|
||||
}
|
||||
},
|
||||
]
|
||||
})
|
||||
|
||||
expect(@room.recordings).to contain_exactly({
|
||||
name: "Example",
|
||||
playbacks: ["presentation"]
|
||||
})
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user