Skip to content

Commit

Permalink
(roles/fiberspec_spec.rb) add role tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dtapiacl committed May 20, 2024
1 parent d92dccd commit 3520c73
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions spec/hosts/roles/fiberspec_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# frozen_string_literal: true

require 'spec_helper'

role = 'fiberspec'

describe "#{role} role" do
on_supported_os.each do |os, os_facts|
next unless os =~ %r{almalinux-9-x86_64}

context "on #{os}" do
let(:facts) { os_facts }
let(:node_params) do
{
role: role,
site: site,
}
end

lsst_sites.each do |site|
fqdn = "#{role}.#{site}.lsst.org"
override_facts(os_facts, fqdn: fqdn, networking: { fqdn => fqdn })

describe fqdn, :sitepp do
let(:site) { site }

it { is_expected.to compile.with_all_deps }

include_examples 'dco'
include_examples 'fiberspec'
end # host
end # lsst_sites
end # on os
end # on_supported_os
end # role

0 comments on commit 3520c73

Please sign in to comment.