mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 17:08:32 +00:00
129 lines
4.4 KiB
Ruby
129 lines
4.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe 'Breadcrumbs schema markup', :aggregate_failures, feature_category: :shared do
|
|
let_it_be(:user) { create(:user) }
|
|
let_it_be(:project) { create(:project, :public, namespace: user.namespace) }
|
|
let_it_be(:issue) { create(:issue, project: project) }
|
|
let_it_be(:group) { create(:group, :public) }
|
|
let_it_be(:subgroup) { create(:group, :public, parent: group) }
|
|
let_it_be(:group_project) { create(:project, :public, namespace: subgroup) }
|
|
let_it_be(:wiki_home_page) { create(:wiki_page, project: project, title: 'home') }
|
|
let_it_be(:wiki_sub_page) { create(:wiki_page, project: project, title: 'home/subpage') }
|
|
|
|
before do
|
|
# TODO: When removing the feature flag,
|
|
# we won't need the tests for the issues listing page, since we'll be using
|
|
# the work items listing page.
|
|
stub_feature_flags(work_item_planning_view: false)
|
|
end
|
|
|
|
it 'generates the breadcrumb schema for user projects' do
|
|
visit project_url(project)
|
|
|
|
item_list = get_schema_content
|
|
|
|
expect(item_list.size).to eq 2
|
|
expect(item_list[0]['name']).to eq project.namespace.name
|
|
expect(item_list[0]['item']).to eq user_url(project.first_owner)
|
|
|
|
expect(item_list[1]['name']).to eq project.name
|
|
expect(item_list[1]['item']).to eq project_url(project)
|
|
end
|
|
|
|
it 'generates the breadcrumb schema for group projects' do
|
|
visit project_url(group_project)
|
|
|
|
item_list = get_schema_content
|
|
|
|
expect(item_list.size).to eq 3
|
|
expect(item_list[0]['name']).to eq group.name
|
|
expect(item_list[0]['item']).to eq group_url(group)
|
|
|
|
expect(item_list[1]['name']).to eq subgroup.name
|
|
expect(item_list[1]['item']).to eq group_url(subgroup)
|
|
|
|
expect(item_list[2]['name']).to eq group_project.name
|
|
expect(item_list[2]['item']).to eq project_url(group_project)
|
|
end
|
|
|
|
it 'generates the breadcrumb schema for group' do
|
|
visit group_url(subgroup)
|
|
|
|
item_list = get_schema_content
|
|
|
|
expect(item_list.size).to eq 2
|
|
expect(item_list[0]['name']).to eq group.name
|
|
expect(item_list[0]['item']).to eq group_url(group)
|
|
|
|
expect(item_list[1]['name']).to eq subgroup.name
|
|
expect(item_list[1]['item']).to eq group_url(subgroup)
|
|
end
|
|
|
|
it 'generates the breadcrumb schema for issues' do
|
|
visit project_issues_url(project)
|
|
|
|
item_list = get_schema_content
|
|
|
|
expect(item_list.size).to eq 3
|
|
expect(item_list[0]['name']).to eq project.namespace.name
|
|
expect(item_list[0]['item']).to eq user_url(project.first_owner)
|
|
|
|
expect(item_list[1]['name']).to eq project.name
|
|
expect(item_list[1]['item']).to eq project_url(project)
|
|
|
|
expect(item_list[2]['name']).to eq 'Issues'
|
|
expect(item_list[2]['item']).to eq project_issues_url(project)
|
|
end
|
|
|
|
it 'generates the breadcrumb schema for specific issue' do
|
|
visit project_issue_url(project, issue)
|
|
|
|
item_list = get_schema_content
|
|
|
|
expect(item_list.size).to eq 4
|
|
expect(item_list[0]['name']).to eq project.namespace.name
|
|
expect(item_list[0]['item']).to eq user_url(project.first_owner)
|
|
|
|
expect(item_list[1]['name']).to eq project.name
|
|
expect(item_list[1]['item']).to eq project_url(project)
|
|
|
|
expect(item_list[2]['name']).to eq 'Issues'
|
|
expect(item_list[2]['item']).to eq project_issues_url(project)
|
|
|
|
expect(item_list[3]['name']).to eq issue.to_reference
|
|
expect(item_list[3]['item']).to eq project_issue_url(project, issue)
|
|
end
|
|
|
|
it 'generates the breadcrumb schema for wiki pages' do
|
|
visit project_wiki_path(project, wiki_sub_page)
|
|
|
|
item_list = get_schema_content
|
|
|
|
expect(item_list.size).to eq 5
|
|
expect(item_list[0]['name']).to eq project.namespace.name
|
|
expect(item_list[0]['item']).to eq user_url(project.first_owner)
|
|
|
|
expect(item_list[1]['name']).to eq project.name
|
|
expect(item_list[1]['item']).to eq project_url(project)
|
|
|
|
expect(item_list[2]['name']).to eq 'Wiki'
|
|
expect(item_list[2]['item']).to eq project_wiki_url(project, wiki_home_page)
|
|
|
|
expect(item_list[3]['name']).to eq 'Home'
|
|
expect(item_list[3]['item']).to eq "#{project_wiki_url(project, wiki_home_page)}/"
|
|
|
|
expect(item_list[4]['name']).to eq 'subpage'
|
|
expect(item_list[4]['item']).to eq project_wiki_url(project, wiki_sub_page)
|
|
end
|
|
|
|
def get_schema_content
|
|
content = find('script[type="application/ld+json"]', visible: false).text(:all)
|
|
|
|
expect(content).not_to be_nil
|
|
|
|
Gitlab::Json.parse(content)['itemListElement']
|
|
end
|
|
end
|