Files
puppet-swift/spec/unit/puppet/provider/service/swiftinit_spec.rb
Takashi Kajinami 55df880f95 Replace deprecated stub from rspec-mocks
... according to the following warning.

Using `stub` from rspec-mocks' old `:should` syntax without explicitly
enabling the syntax is deprecated. Use the new `:expect` syntax or
explicitly enable `:should` instead.

Change-Id: I45564a4bc3346037265a3363b3bd635b4c9f53e1
2023-12-04 23:53:24 +09:00

60 lines
1.6 KiB
Ruby

#! /usr/bin/env ruby
##
## Unit testing for the swiftinit service provider
##
require 'spec_helper'
provider_class = Puppet::Type.type(:service).provider(:swiftinit)
describe provider_class do
before(:each) do
@provider = provider_class.new
allow(@provider.resource).to receive(:[]).with(:name).and_return('swift-object-server')
allow(@provider.resource).to receive(:[]).with(:ensure).and_return(:enable)
allow(@provider.resource).to receive(:[]).with(:pattern).and_return('swift-object')
allow(@provider.resource).to receive(:[]).with(:manifest).and_return('object-server')
allow(@provider.resource).to receive(:ref).and_return('Service[myservice]')
allow(@provider).to receive(:command).with(:systemctl_run).and_return('systemctl_run')
allow(@provider).to receive(:systemctl_run)
end
it "should have a status method" do
expect(@provider).to respond_to(:status)
end
it "should have a start method" do
expect(@provider).to respond_to(:start)
end
it "should have a stop method" do
expect(@provider).to respond_to(:stop)
end
it "should have a restart method" do
expect(@provider).to respond_to(:restart)
end
it "should have a refresh method" do
expect(@provider).to respond_to(:refresh)
end
it "should have an enabled? method" do
expect(@provider).to respond_to(:enabled?)
end
it "should have an enable method" do
expect(@provider).to respond_to(:enable)
end
it "should have a disable method" do
expect(@provider).to respond_to(:disable)
end
end
##### TODO figure out how to stub out files and test each method more.