Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build_other_xml_service_spec.rb « repository_metadata « rpm « packages « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 201f9e67ce9924443b1c58ed7240817439aa7d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true
require 'spec_helper'

RSpec.describe Packages::Rpm::RepositoryMetadata::BuildOtherXmlService do
  describe '#execute' do
    subject { described_class.new(data).execute }

    include_context 'with rpm package data'

    let(:data) { xml_update_params }
    let(:changelog_xpath) { "//package/changelog" }

    it 'adds all changelog nodes' do
      result = subject

      expect(result.xpath(changelog_xpath).count).to eq(data[:changelogs].count)
    end

    it 'set required date attribute' do
      result = subject

      data[:changelogs].each do |changelog|
        expect(result.at("#{changelog_xpath}[@date=\"#{changelog[:changelogtime]}\"]")).not_to be_nil
      end
    end
  end
end