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

experiment_spec.rb « ml « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e300f82d2904ff03a600dca504a83ac60bbad28d (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ml::Experiment do
  describe 'associations' do
    it { is_expected.to belong_to(:project) }
    it { is_expected.to belong_to(:user) }
    it { is_expected.to have_many(:candidates) }
  end

  describe '#by_project_id_and_iid?' do
    let(:exp) { create(:ml_experiments) }
    let(:iid) { exp.iid }

    subject { described_class.by_project_id_and_iid(exp.project_id, iid) }

    context 'if exists' do
      it { is_expected.to eq(exp) }
    end

    context 'if does not exist' do
      let(:iid) { non_existing_record_id }

      it { is_expected.to be(nil) }
    end
  end

  describe '#by_project_id_and_name?' do
    let(:exp) { create(:ml_experiments) }
    let(:exp_name) { exp.name }

    subject { described_class.by_project_id_and_name(exp.project_id, exp_name) }

    context 'if exists' do
      it { is_expected.to eq(exp) }
    end

    context 'if does not exist' do
      let(:exp_name) { 'hello' }

      it { is_expected.to be_nil }
    end
  end

  describe '#has_record?' do
    let(:exp) { create(:ml_experiments) }
    let(:exp_name) { exp.name }

    subject { described_class.has_record?(exp.project_id, exp_name) }

    context 'if exists' do
      it { is_expected.to be_truthy }
    end

    context 'if does not exist' do
      let(:exp_name) { 'hello' }

      it { is_expected.to be_falsey }
    end
  end
end