spec/unit/plugins/darwin/kernel_spec.rb in ohai-8.10.0 vs spec/unit/plugins/darwin/kernel_spec.rb in ohai-8.11.1
- old
+ new
@@ -14,13 +14,12 @@
# 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 File.expand_path(File.dirname(__FILE__) + "/../../../spec_helper.rb")
-require File.expand_path(File.dirname(__FILE__) + '/../../../spec_helper.rb')
-
describe Ohai::System, "Darwin kernel plugin" do
before(:each) do
@plugin = get_plugin("kernel")
allow(@plugin).to receive(:collect_os).and_return(:darwin)
allow(@plugin).to receive(:init_kernel).and_return({})
@@ -33,32 +32,29 @@
9 22 0xffffff7f807f3000 0x9000 0x9000 com.apple.iokit.IOACPIFamily (1.4) <7 6 4 3>
10 30 0xffffff7f80875000 0x29000 0x29000 com.apple.iokit.IOPCIFamily (2.8) <7 6 5 4 3>
EOF
modules = {
- "com.apple.kec.corecrypto"=>
- {"version"=>"1.0", "size"=>266240, "index"=>"8", "refcount"=>"0"},
- "com.apple.iokit.IOACPIFamily"=>
- {"version"=>"1.4", "size"=>36864, "index"=>"9", "refcount"=>"22"},
- "com.apple.iokit.IOPCIFamily"=>
- {"version"=>"2.8", "size"=>167936, "index"=>"10", "refcount"=>"30"}}
+ "com.apple.kec.corecrypto" => { "version" => "1.0", "size" => 266240, "index" => "8", "refcount" => "0" },
+ "com.apple.iokit.IOACPIFamily" => { "version" => "1.4", "size" => 36864, "index" => "9", "refcount" => "22" },
+ "com.apple.iokit.IOPCIFamily" => { "version" => "2.8", "size" => 167936, "index" => "10", "refcount" => "30" } }
@plugin.run
expect(@plugin[:kernel][:modules]).to eql(modules)
end
it "should not set kernel_machine to x86_64" do
allow(@plugin).to receive(:shell_out).with("sysctl -n hw.optional.x86_64").and_return(mock_shell_out(0, "0", ""))
allow(@plugin).to receive(:shell_out).with("kextstat -k -l").and_return(mock_shell_out(0, "", ""))
@plugin.run
- expect(@plugin[:kernel][:machine]).not_to eq('x86_64')
+ expect(@plugin[:kernel][:machine]).not_to eq("x86_64")
end
it "should set kernel_machine to x86_64" do
allow(@plugin).to receive(:shell_out).with("sysctl -n hw.optional.x86_64").and_return(mock_shell_out(0, "1", ""))
allow(@plugin).to receive(:shell_out).with("kextstat -k -l").and_return(mock_shell_out(0, "", ""))
@plugin.run
- expect(@plugin[:kernel][:machine]).to eq('x86_64')
+ expect(@plugin[:kernel][:machine]).to eq("x86_64")
end
it "should set the kernel_os to the kernel_name value" do
allow(@plugin).to receive(:shell_out).with("sysctl -n hw.optional.x86_64").and_return(mock_shell_out(0, "1", ""))
allow(@plugin).to receive(:shell_out).with("kextstat -k -l").and_return(mock_shell_out(0, "", ""))