
This patch changes the default worker count from ::processorcount to the new ::os_workers fact. ::os_workers is based on the number of processors (currently cpu/4) but is capped at a maximum of 8 worker processors. This is a much more reasonable default in general and prevents excessive resource consumption on systems with a large number of CPUs. Change-Id: I4a9b2e6cc9d8f5b91f148ac61b4a36b201a27056
61 lines
2.1 KiB
Ruby
61 lines
2.1 KiB
Ruby
#
|
|
# Copyright (C) 2016 Red Hat Inc. <licensing@redhat.com>
|
|
#
|
|
# Author: Ade Lee <alee@redhat.com>
|
|
#
|
|
# 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.
|
|
#
|
|
# Unit tests for barbican::plugins::p11_crypto class
|
|
#
|
|
require 'spec_helper'
|
|
|
|
describe 'barbican::plugins::p11_crypto' do
|
|
|
|
let :facts do
|
|
@default_facts.merge(
|
|
{
|
|
:osfamily => 'RedHat',
|
|
:os_workers => '7',
|
|
}
|
|
)
|
|
end
|
|
|
|
describe 'with pk11 plugin' do
|
|
let :params do
|
|
{
|
|
:p11_crypto_plugin_login => 'p11_user',
|
|
:p11_crypto_plugin_mkek_label => 'mkek_label',
|
|
:p11_crypto_plugin_mkek_length => 32,
|
|
:p11_crypto_plugin_hmac_label => 'hmac_label',
|
|
:p11_crypto_plugin_slot_id => 1,
|
|
:p11_crypto_plugin_library_path => '/usr/lib/libCryptoki2_64.so',
|
|
}
|
|
end
|
|
|
|
it 'is_expected.to set p11 parameters' do
|
|
is_expected.to contain_barbican_config('p11_crypto_plugin/login') \
|
|
.with_value(params[:p11_crypto_plugin_login])
|
|
is_expected.to contain_barbican_config('p11_crypto_plugin/mkek_label') \
|
|
.with_value(params[:p11_crypto_plugin_mkek_label])
|
|
is_expected.to contain_barbican_config('p11_crypto_plugin/mkek_length') \
|
|
.with_value(params[:p11_crypto_plugin_mkek_length])
|
|
is_expected.to contain_barbican_config('p11_crypto_plugin/hmac_label') \
|
|
.with_value(params[:p11_crypto_plugin_hmac_label])
|
|
is_expected.to contain_barbican_config('p11_crypto_plugin/slot_id') \
|
|
.with_value(params[:p11_crypto_plugin_slot_id])
|
|
is_expected.to contain_barbican_config('p11_crypto_plugin/library_path') \
|
|
.with_value(params[:p11_crypto_plugin_library_path])
|
|
end
|
|
end
|
|
end
|