Sha256: 56a3906d88b5541f25d1cf511f3285af5b9b390ca44d2363b7df3ab5b0c2a583

Contents?: true

Size: 1.45 KB

Versions: 4

Compression:

Stored size: 1.45 KB

Contents

require 'time'

module HybridPlatformsConductor

  module HpcPlugins

    module Test

      # Test that the last deployment was done recently
      class DeployFreshness < HybridPlatformsConductor::Test

        MAX_ACCEPTABLE_REFRESH_PERIOD_SECS = 3 * 31 * 24 * 60 * 60 # 3 months

        # Check my_test_plugin.rb.sample documentation for signature details.
        def test_on_node
          now = Time.now
          {
            'sudo ls -t /var/log/deployments' => proc do |stdout|
              if stdout.empty?
                error 'Node has never been deployed using deploy (/var/log/deployments is empty)'
              elsif stdout.first =~ /No such file or directory/
                error 'Node has never been deployed using deploy (/var/log/deployments does not exist)'
              else
                # Expecting following file names
                # 2017-12-01_093418_a_usernme
                file_match = stdout.first.match(/^#{Regexp.escape(@node)}_(\d{4}-\d{2}-\d{2})_.+$/)
                if file_match.nil?
                  error "Invalid chef deployment log file found: #{stdout.first}"
                else
                  last_deploy_time = Time.parse(file_match[1])
                  error "Last deployment has been done on #{last_deploy_time.strftime('%F')}. Should refresh it." if now - last_deploy_time > MAX_ACCEPTABLE_REFRESH_PERIOD_SECS
                end
              end
            end
          }
        end

      end

    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hybrid_platforms_conductor-32.4.2 lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_freshness.rb
hybrid_platforms_conductor-32.4.1 lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_freshness.rb
hybrid_platforms_conductor-32.4.0 lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_freshness.rb
hybrid_platforms_conductor-32.3.6 lib/hybrid_platforms_conductor/hpc_plugins/test/deploy_freshness.rb