Skip to content

Commit

Permalink
(spec) add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dtapiacl committed May 14, 2024
1 parent 2ae1226 commit d4053da
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions spec/hosts/nodes/lsstcam-rebps.cp.lsst.org_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# frozen_string_literal: true

require 'spec_helper'

describe 'lsstcam-rebps.cp.lsst.org', :sitepp do
on_supported_os.each do |os, os_facts|
next unless os =~ %r{almalinux-9-x86_64}

context "on #{os}" do
let(:facts) do
override_facts(os_facts,
fqdn: 'lsstcam-rebps.cp.lsst.org',
is_virtual: false,
virtual: 'physical',
dmi: {
'product' => {
'name' => 'EPMe-42',
},
})
end
let(:node_params) do
{
role: 'ccs-hcu',
site: 'cp',
}
end

it { is_expected.to compile.with_all_deps }

include_examples 'baremetal no bmc'
include_context 'with nm interface'
it { is_expected.to have_nm__connection_resource_count(1) }

context 'with enp0s31f6' do
let(:interface) { 'enp0s31f6' }

it_behaves_like 'nm enabled interface'
it_behaves_like 'nm ethernet interface'
it_behaves_like 'nm manual interface'
it { expect(nm_keyfile['ipv4']['address1']).to eq('139.229.175.78/26,139.229.175.126') }
it { expect(nm_keyfile['ipv4']['dns']).to eq('139.229.160.53;139.229.160.54;139.229.160.55;') }
it { expect(nm_keyfile['ipv4']['dns-search']).to eq('cp.lsst.org;') }
end
end # on os
end # on_supported_os
end

0 comments on commit d4053da

Please sign in to comment.