fix(config): ensure AnonymousUserToken is set
[arvados-formula.git] / test / integration / shell / controls / config_spec.rb
index 13bfa2482bf7b444e4a888d6972a1b35ae7b80f0..f0e8a7ef14b3765f71680af5fc59bc0d8dd2f8f4 100644 (file)
@@ -1,19 +1,35 @@
 # frozen_string_literal: true
 
-siab_stanza = <<~SIAB_STANZA
-  SHELLINABOX_PORT=4200
-  # SSL is disabled because it is terminated in Nginx. Adjust as needed.
-  SHELLINABOX_ARGS="--disable-ssl --no-beep --service=/shell.fixme.example.net:AUTH:HOME:SHELL"
-SIAB_STANZA
+control 'arvados configuration file' do
+  title 'should not exist'
 
-libpam_stanza = <<~LIBPAM_STANZA
-  auth [success=1 default=ignore] /usr/lib/pam_arvados.so fixme.example.net shell.fixme.example.net
-LIBPAM_STANZA
+  describe file('/etc/arvados/config.yml') do
+    it { should_not exist}
+  end
+end
 
 control 'shellinabox configuration' do
   title 'should match desired lines'
 
-  describe file('/etc/default/shellinabox') do
+  case os[:name]
+  when 'centos'
+    file = '/etc/sysconfig/shellinaboxd'
+    tpl = 'RedHat'
+    siab_stanza = <<~SIAB_STANZA
+      PORT=4200
+      # SSL is disabled because it is terminated in Nginx. Adjust as needed.
+      OPTS="--disable-ssl --no-beep --service=/shell.fixme.example.net:SSH"
+    SIAB_STANZA
+  when 'debian', 'ubuntu'
+    file = '/etc/default/shellinabox'
+    tpl = 'default'
+    siab_stanza = <<~SIAB_STANZA
+      SHELLINABOX_PORT=4200
+      # SSL is disabled because it is terminated in Nginx. Adjust as needed.
+      SHELLINABOX_ARGS="--disable-ssl --no-beep --service=/shell.fixme.example.net:AUTH:HOME:SHELL"
+    SIAB_STANZA
+  end
+  describe file(file) do
     it { should be_file }
     it { should be_owned_by 'root' }
     it { should be_grouped_into 'root' }
@@ -21,7 +37,7 @@ control 'shellinabox configuration' do
     its('content') do
       should include(
         # rubocop:disable Layout/LineLength
-        'File managed by Salt at <salt://arvados/shell/config/files/default/shell-shellinabox.tmpl.jinja>.'
+        "File managed by Salt at <salt://arvados/shell/config/files/#{tpl}/shell-shellinabox.tmpl.jinja>."
         # rubocop:enable Layout/LineLength
       )
     end
@@ -32,6 +48,10 @@ end
 control 'libpam-arvados configuration' do
   title 'should match desired lines'
 
+  libpam_stanza = <<~LIBPAM_STANZA
+    auth [success=1 default=ignore] /usr/lib/pam_arvados.so fixme.example.net shell.fixme.example.net
+  LIBPAM_STANZA
+
   describe file('/etc/pam.d/arvados') do
     it { should be_file }
     it { should be_owned_by 'root' }