BigW Consortium Gitlab

updater_spec.rb 666 Bytes
Newer Older
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
require 'spec_helper'

describe Gitlab::CycleAnalytics::Updater do
  describe 'updates authors' do
    let(:user) { create(:user) }
    let(:events) { [{ 'author_id' => user.id }] }

    it 'maps the correct user' do
      described_class.update!(events, from: 'author_id', to: 'author', klass: User)

      expect(events.first['author']).to eq(user)
    end
  end

  describe 'updates builds' do
    let(:build) { create(:ci_build) }
    let(:events) { [{ 'id' => build.id }] }

    it 'maps the correct build' do
      described_class.update!(events, from: 'id', to: 'build', klass: ::Ci::Build)

      expect(events.first['build']).to eq(build)
    end
  end
end