From 0269e8c5ef8966b84399376ae57567072f594070 Mon Sep 17 00:00:00 2001 From: "Luke \"Jared\" Bennett" Date: Tue, 19 Sep 2017 11:25:13 +0100 Subject: Add participants spec --- .../shared/issuable/_participants.html.haml.rb | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 spec/views/shared/issuable/_participants.html.haml.rb diff --git a/spec/views/shared/issuable/_participants.html.haml.rb b/spec/views/shared/issuable/_participants.html.haml.rb new file mode 100644 index 00000000000..6bc95846f63 --- /dev/null +++ b/spec/views/shared/issuable/_participants.html.haml.rb @@ -0,0 +1,41 @@ +require 'spec_helper' +require 'nokogiri' + +def expect_lazy_load_image(author) + avatar = author.find('img') + + expect(avatar[:src]).to eql?('data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==') + expect(avatar[:"data-src"]).to exist +end + +describe 'shared/issuable/_participants.html.haml' do + let(:project) { create(:project) } + let(:participants) { create_list(:user, 10) } + + before do + allow(view).to receive_messages(project: project, + participants: participants) + end + + it 'displays' do + render 'shared/issuable/participants' + + html = Nokogiri::HTML(rendered) + + authors = html.css('.participants-author') + p authors + p authors.size + visible_authors = authors[0..6] + hidden_authors = authors[7..-1] + + visible_authors.each do |author| + expect(author).not_to have_selector('js-participants-hidden') + expect_lazy_load_image(author) + end + + hidden_authors.each do |author| + expect(author).to have_selector('js-participants-hidden') + expect_lazy_load_image(author) + end + end +end -- cgit v1.2.1