Sha256: 02e50bf0c50d1314c080e61eb71e7ed2ab2205eeb6b27cf22790d7d47a93d698

Contents?: true

Size: 1.53 KB

Versions: 28

Compression:

Stored size: 1.53 KB

Contents

# -*- encoding: utf-8 -*-
#
# Author:: Fletcher Nichol (<fnichol@nichol.ca>)
#
# Copyright (C) 2014, Fletcher Nichol
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require_relative "../spec_helper"

# There is some double Base64 encoding going on when a PowerShell script is
# given to a CMD to invoke. We're in a battle with Windows' CMD max length and
# that what these specs are trying to ensure. This does lead to some less than
# ideal "code golfing" to reduce the code payload, but at the end of the day
# it's easier to see the entire context of the code vs. uploading partial code
# fragements and calling them on the remote side (not to mention more expensive
# in terms of PowerShell invocations).

describe "PowerShell script max size" do

  MAX_POWERSHELL_SIZE = 3010

  Dir.glob(File.join(File.dirname(__FILE__), "../../support/*.ps1*")).each do|script|
    base = File.basename(script)

    it "support/#{base} size must be less than #{MAX_POWERSHELL_SIZE} bytes" do
      (IO.read(script).size < MAX_POWERSHELL_SIZE).must_equal true
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
test-kitchen-1.14.1 spec/support/powershell_max_size_spec.rb
test-kitchen-1.14.0 spec/support/powershell_max_size_spec.rb
test-kitchen-1.13.2 spec/support/powershell_max_size_spec.rb
test-kitchen-1.13.1 spec/support/powershell_max_size_spec.rb
test-kitchen-1.13.0 spec/support/powershell_max_size_spec.rb
test-kitchen-1.12.0 spec/support/powershell_max_size_spec.rb
test-kitchen-1.11.1 spec/support/powershell_max_size_spec.rb
test-kitchen-1.11.0 spec/support/powershell_max_size_spec.rb
test-kitchen-1.10.2 spec/support/powershell_max_size_spec.rb
test-kitchen-1.10.2.dev spec/support/powershell_max_size_spec.rb
test-kitchen-1.10.0 spec/support/powershell_max_size_spec.rb
test-kitchen-1.9.2 spec/support/powershell_max_size_spec.rb
test-kitchen-1.9.1 spec/support/powershell_max_size_spec.rb
test-kitchen-1.9.0 spec/support/powershell_max_size_spec.rb
test-kitchen-1.8.0 spec/support/powershell_max_size_spec.rb
test-kitchen-1.7.3 spec/support/powershell_max_size_spec.rb
test-kitchen-1.7.2 spec/support/powershell_max_size_spec.rb
test-kitchen-1.7.1 spec/support/powershell_max_size_spec.rb
test-kitchen-1.7.1.dev spec/support/powershell_max_size_spec.rb
test-kitchen-1.6.0 spec/support/powershell_max_size_spec.rb