summaryrefslogtreecommitdiff
path: root/platform_simulation_specs/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'platform_simulation_specs/plugins')
-rw-r--r--platform_simulation_specs/plugins/c_spec.rb55
-rw-r--r--platform_simulation_specs/plugins/erlang_spec.rb38
-rw-r--r--platform_simulation_specs/plugins/go_spec.rb30
-rw-r--r--platform_simulation_specs/plugins/groovy_spec.rb39
-rw-r--r--platform_simulation_specs/plugins/java_spec.rb66
-rw-r--r--platform_simulation_specs/plugins/kernel_spec.rb30
-rw-r--r--platform_simulation_specs/plugins/lua_spec.rb37
-rw-r--r--platform_simulation_specs/plugins/nodejs_spec.rb35
-rw-r--r--platform_simulation_specs/plugins/perl_spec.rb42
-rw-r--r--platform_simulation_specs/plugins/php_spec.rb39
-rw-r--r--platform_simulation_specs/plugins/python_spec.rb36
11 files changed, 0 insertions, 447 deletions
diff --git a/platform_simulation_specs/plugins/c_spec.rb b/platform_simulation_specs/plugins/c_spec.rb
deleted file mode 100644
index a40db825..00000000
--- a/platform_simulation_specs/plugins/c_spec.rb
+++ /dev/null
@@ -1,55 +0,0 @@
-
-# Author:: Doug MacEachern <dougm@vmware.com>
-# Copyright:: Copyright (c) 2010 VMware, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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 "rbconfig"
-require_relative "../../spec_helper.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin c" do
- test_plugin(%w{languages c}, [ "/lib/libc.so.6", "/lib64/libc.so.6", "gcc", "cl", "devenv.com", "xlc", "cc", "what" ]) do |p|
- p.test([ "centos-5.5" ], [ "x64" ], [[]], { "languages" => { "c" => {
- "gcc" => { "version" => "4.1.2", "description" => "gcc version 4.1.2 20080704 (Red Hat 4.1.2-48)" },
- "glibc" => { "version" => "2.5" , "description" => "GNU C Library stable release version 2.5, by Roland McGrath et al." },
- "cl" => nil, "vs" => nil, "xlc" => nil, "sunpro" => nil, "hpcc" => nil } } })
- p.test([ "centos-6.2" ], %w{x86 x64}, [[]], { "languages" => { "c" => {
- "gcc" => { "version" => "4.4.6", "description" => "gcc version 4.4.6 20110731 (Red Hat 4.4.6-3) (GCC) " },
- "glibc" => { "version" => "2.12", "description" => "GNU C Library stable release version 2.12, by Roland McGrath et al." },
- "cl" => nil, "vs" => nil, "xlc" => nil, "sunpro" => nil, "hpcc" => nil } } })
- p.test([ "ubuntu-10.04" ], %w{x86 x64}, [[]],
- { "languages" => { "c" => {
- "glibc" => { "version" => "2.11.1", "description" => "GNU C Library (Ubuntu EGLIBC 2.11.1-0ubuntu7.12) stable release version 2.11.1, by Roland McGrath et al." },
- "gcc" => nil, "cl" => nil, "vs" => nil, "xlc" => nil, "sunpro" => nil, "hpcc" => nil } } })
- p.test([ "ubuntu-12.04", "ubuntu-13.04" ], %w{x86 x64}, [[]], { "languages" => { "c" => nil } }, "OC-9993")
- p.test([ "ubuntu-12.10" ], [ "x64" ], [[]], { "languages" => { "c" => nil } }, "OC-9993")
- p.test([ "centos-5.5" ], [ "x64" ], [[ "gcc" ]], { "languages" => { "c" => {
- "gcc" => { "version" => "4.1.2", "description" => "gcc version 4.1.2 20080704 (Red Hat 4.1.2-54)" },
- "glibc" => { "version" => "2.5", "description" => "GNU C Library stable release version 2.5, by Roland McGrath et al." },
- "cl" => nil, "vs" => nil, "xlc" => nil, "sunpro" => nil, "hpcc" => nil } } })
- p.test([ "centos-6.2" ], %w{x86 x64}, [[ "gcc" ]], { "languages" => { "c" => {
- "gcc" => { "version" => "4.4.7", "description" => "gcc version 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC) " },
- "glibc" => { "version" => "2.12", "description" => "GNU C Library stable release version 2.12, by Roland McGrath et al." },
- "cl" => nil, "vs" => nil, "xlc" => nil, "sunpro" => nil, "hpcc" => nil } } })
- p.test([ "ubuntu-10.04" ], %w{x86 x64}, [[ "gcc" ]], { "languages" => { "c" => {
- "gcc" => { "version" => "4.4.3", "description" => "gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5.1) " },
- "glibc" => { "version" => "2.11.1", "description" => "GNU C Library (Ubuntu EGLIBC 2.11.1-0ubuntu7.12) stable release version 2.11.1, by Roland McGrath et al." },
- "cl" => nil, "vs" => nil, "xlc" => nil, "sunpro" => nil, "hpcc" => nil } } })
- p.test([ "ubuntu-12.04" ], %w{x86 x64}, [[ "gcc" ]], { "languages" => { "c" => {
- "gcc" => { "version" => "4.6.3", "description" => "gcc verison 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) " },
- "glibc" => nil, "cl" => nil, "vs" => nil, "xlc" => nil, "sunpro" => nil, "hpcc" => nil } } }, "OC-9993" )
- end
-end
diff --git a/platform_simulation_specs/plugins/erlang_spec.rb b/platform_simulation_specs/plugins/erlang_spec.rb
deleted file mode 100644
index dab10321..00000000
--- a/platform_simulation_specs/plugins/erlang_spec.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# Author:: Adam Jacob (<adam@chef.io>)
-# Author:: Theodore Nordsieck (<theo@chef.io>)
-# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin erlang" do
- test_plugin(%w{languages erlang}, [ "erl" ]) do |p|
- p.test([ "centos-5.9", "centos-6.4", "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[]],
- { "languages" => { "erlang" => nil } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[]],
- { "languages" => { "erlang" => nil } })
- p.test([ "centos-5.9", "centos-6.4" ], %w{x86 x64}, [[ "erlang" ]],
- { "languages" => { "erlang" => { "version" => "5.8.5", "options" => [ "ASYNC_THREADS" ], "emulator" => "BEAM" } } })
- p.test([ "ubuntu-10.04" ], %w{x86 x64}, [[ "erlang" ]],
- { "languages" => { "erlang" => { "version" => "5.7.4", "options" => %w{ASYNC_THREADS HIPE}, "emulator" => "BEAM" } } })
- p.test([ "ubuntu-12.04" ], %w{x86 x64}, [[ "erlang" ]],
- { "languages" => { "erlang" => { "version" => "5.8.5", "options" => [ "ASYNC_THREADS" ], "emulator" => "BEAM" } } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[ "erlang" ]],
- { "languages" => { "erlang" => { "version" => "5.9.1", "options" => [ "ASYNC_THREADS" ], "emulator" => "BEAM" } } })
- end
-end
diff --git a/platform_simulation_specs/plugins/go_spec.rb b/platform_simulation_specs/plugins/go_spec.rb
deleted file mode 100644
index d70372f9..00000000
--- a/platform_simulation_specs/plugins/go_spec.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# Author:: Christian Vozar (<christian@rogueethic.com>)
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin go" do
- test_plugin(%w{languages go}, [ "go" ]) do |p|
- p.test([ "centos-6.4", "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[]],
- { "languages" => { "go" => nil } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[]],
- { "languages" => { "go" => nil } })
- p.test([ "centos-6.4", "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[ "go" ]],
- { "languages" => { "go" => { "version" => "0.10.2" } } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[ "go" ]],
- { "languages" => { "go" => { "version" => "0.10.2" } } })
- end
-end
diff --git a/platform_simulation_specs/plugins/groovy_spec.rb b/platform_simulation_specs/plugins/groovy_spec.rb
deleted file mode 100644
index ee5ac9a8..00000000
--- a/platform_simulation_specs/plugins/groovy_spec.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# Author:: Doug MacEachern <dougm@vmware.com>
-# Copyright:: Copyright (c) 2009 VMware, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin groovy" do
- test_plugin(%w{languages groovy}, [ "groovy" ]) do |p|
- p.test([ "centos-5.5", "ubuntu-12.10" ], [ "x64" ], [[]],
- { "languages" => { "groovy" => nil } })
- p.test([ "centos-6.2", "ubuntu-12.04", "ubuntu-13.04" ], %w{x86 x64}, [[]],
- { "languages" => { "groovy" => nil } })
- p.test([ "centos-5.5" ], [ "x64" ], [%w{java groovy}],
- { "languages" => { "groovy" => { "version" => "2.1.7" } } })
- p.test([ "centos-6.2" ], %w{x86 x64}, [%w{java groovy}],
- { "languages" => { "groovy" => { "version" => "2.1.7" } } })
- p.test([ "ubuntu-10.04" ], %w{x86 x64}, [%w{java groovy}],
- { "languages" => { "groovy" => { "version" => "1.6.4" } } })
- p.test([ "ubuntu-12.04", "ubuntu-13.04" ], %w{x86 x64}, [%w{java groovy}],
- { "languages" => { "groovy" => { "version" => "1.8.6" } } })
- p.test([ "ubuntu-12.10" ], [ "x64" ], [%w{java groovy}],
- { "languages" => { "groovy" => { "version" => "1.8.6" } } })
- end
-end
diff --git a/platform_simulation_specs/plugins/java_spec.rb b/platform_simulation_specs/plugins/java_spec.rb
deleted file mode 100644
index 1d86f24d..00000000
--- a/platform_simulation_specs/plugins/java_spec.rb
+++ /dev/null
@@ -1,66 +0,0 @@
-#
-# Author:: Benjamin Black (<bb@chef.io>)
-# Author:: Theodore Nordsieck (<theo@chef.io>)
-# Copyright:: Copyright (c) 2009-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin java (Java5 Client VM)" do
- test_plugin(%w{languages java}, [ "java" ]) do |p|
- p.test([ "centos-5.9", "centos-6.4", "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[]],
- { "languages" => { "java" => nil } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[]],
- { "languages" => { "java" => nil } })
- p.test([ "centos-5.9" ], [ "x86" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_24",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.11.11.90)", "build" => "rhel-1.41.1.11.11.90.el5_9-i386" },
- "hotspot" => { "name" => "OpenJDK Client VM", "build" => "20.0-b12, mixed mode" } } } })
- p.test([ "centos-5.9" ], [ "x64" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_24",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.11.11.90)", "build" => "rhel-1.41.1.11.11.90.el5_9-x86_64" },
- "hotspot" => { "name" => "OpenJDK 64-Bit Server VM", "build" => "20.0-b12, mixed mode" } } } })
- p.test([ "centos-6.4" ], [ "x86" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_24",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.11.11.90)", "build" => "rhel-1.62.1.11.11.90.el6_4-i386" },
- "hotspot" => { "name" => "OpenJDK Client VM", "build" => "20.0-b12, mixed mode" } } } })
- p.test([ "centos-6.4" ], [ "x64" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_24",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.11.11.90)", "build" => "rhel-1.62.1.11.11.90.el6_4-x86_64" },
- "hotspot" => { "name" => "OpenJDK 64-Bit Server VM", "build" => "20.0-b12, mixed mode" } } } })
- p.test([ "ubuntu-10.04" ], [ "x86" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_27",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.12.5)", "build" => "6b27-1.12.5-0ubuntu0.10.04.1" },
- "hotspot" => { "name" => "OpenJDK Client VM", "build" => "20.0-b12, mixed mode, sharing" } } } })
- p.test([ "ubuntu-10.04" ], [ "x64" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_27",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.12.5)", "build" => "6b27-1.12.5-0ubuntu0.10.04.1" },
- "hotspot" => { "name" => "OpenJDK 64-Bit Server VM", "build" => "20.0-b12, mixed mode" } } } })
- p.test([ "ubuntu-12.04" ], [ "x86" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_27",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.12.5)", "build" => "6b27-1.12.5-0ubuntu0.12.04.1" },
- "hotspot" => { "name" => "OpenJDK Client VM", "build" => "20.0-b12, mixed mode, sharing" } } } })
- p.test([ "ubuntu-12.04" ], [ "x64" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_27",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.12.5)", "build" => "6b27-1.12.5-0ubuntu0.12.04.1" },
- "hotspot" => { "name" => "OpenJDK 64-Bit Server VM", "build" => "20.0-b12, mixed mode" } } } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [["java"]],
- { "languages" => { "java" => { "version" => "1.6.0_27",
- "runtime" => { "name" => "OpenJDK Runtime Environment (IcedTea6 1.12.5)", "build" => "6b27-1.12.5-1ubuntu1" },
- "hotspot" => { "name" => "OpenJDK 64-Bit Server VM", "build" => "20.0-b12, mixed mode" } } } })
- end
-end
diff --git a/platform_simulation_specs/plugins/kernel_spec.rb b/platform_simulation_specs/plugins/kernel_spec.rb
deleted file mode 100644
index e1bc2aff..00000000
--- a/platform_simulation_specs/plugins/kernel_spec.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-#
-# Author:: Adam Jacob (<adam@chef.io>)
-# Author:: Theodore Nordsieck (<theo@chef.io>)
-# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "Linux kernel plugin" do
- test_plugin([ "kernel" ], %w{uname env}) do |p|
- p.test([ "centos-5.9", "centos-6.4", "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[]],
- { "kernel" => { "os" => "GNU/Linux" } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[]],
- { "kernel" => { "os" => "GNU/Linux" } })
- end
-end
diff --git a/platform_simulation_specs/plugins/lua_spec.rb b/platform_simulation_specs/plugins/lua_spec.rb
deleted file mode 100644
index cf5e573d..00000000
--- a/platform_simulation_specs/plugins/lua_spec.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-#
-# Author:: Doug MacEachern <dougm@vmware.com>
-# Author:: Theodore Nordsieck (<theo@chef.io>)
-# Copyright:: Copyright (c) 2009 VMware, Inc.
-# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin lua" do
- test_plugin(%w{languages lua}, [ "lua" ]) do |p|
- p.test([ "centos-6.4" ], %w{x86 x64}, [[], ["lua"]],
- { "languages" => { "lua" => { "version" => "5.1.4" } } })
- p.test([ "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[]],
- { "languages" => { "lua" => nil } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[]],
- { "languages" => { "lua" => nil } })
- p.test([ "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[ "lua" ]],
- { "languages" => { "lua" => { "version" => "5.1.4" } } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [["lua"]],
- { "languages" => { "lua" => { "version" => "5.1.5" } } })
- end
-end
diff --git a/platform_simulation_specs/plugins/nodejs_spec.rb b/platform_simulation_specs/plugins/nodejs_spec.rb
deleted file mode 100644
index 3de60fa7..00000000
--- a/platform_simulation_specs/plugins/nodejs_spec.rb
+++ /dev/null
@@ -1,35 +0,0 @@
-#
-# Author:: Jacques Marneweck (<jacques@powertrip.co.za>)
-# Author:: Theodore Nordsieck (<theo@chef.io>)
-# Copyright:: Copyright (c) Jacques Marneweck
-# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin nodejs" do
- test_plugin(%w{languages nodejs}, [ "node" ]) do |p|
- p.test([ "centos-6.4", "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[]],
- { "languages" => { "nodejs" => nil } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[]],
- { "languages" => { "nodejs" => nil } })
- p.test([ "centos-6.4", "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[ "nodejs" ]],
- { "languages" => { "nodejs" => { "version" => "0.10.2" } } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[ "nodejs" ]],
- { "languages" => { "nodejs" => { "version" => "0.10.2" } } })
- end
-end
diff --git a/platform_simulation_specs/plugins/perl_spec.rb b/platform_simulation_specs/plugins/perl_spec.rb
deleted file mode 100644
index bf4a9330..00000000
--- a/platform_simulation_specs/plugins/perl_spec.rb
+++ /dev/null
@@ -1,42 +0,0 @@
-#
-# Author:: Joshua Timberman(<joshua@chef.io>)
-# Author:: Theodore Nordsieck (<theo@chef.io>)
-# Copyright:: Copyright (c) 2009-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin perl" do
- test_plugin(%w{languages perl}, [ "perl" ]) do |p|
- p.test([ "centos-5.9" ], [ "x86" ], [[], [ "perl" ]],
- { "languages" => { "perl" => { "version" => "5.8.8", "archname" => "i386-linux-thread-multi" } } })
- p.test([ "centos-5.9" ], [ "x64" ], [[], [ "perl" ]],
- { "languages" => { "perl" => { "version" => "5.8.8", "archname" => "x86_64-linux-thread-multi" } } })
- p.test([ "centos-6.4" ], [ "x86" ], [[], [ "perl" ]],
- { "languages" => { "perl" => { "version" => "5.10.1", "archname" => "i386-linux-thread-multi" } } })
- p.test([ "centos-6.4" ], [ "x64" ], [[], [ "perl" ]],
- { "languages" => { "perl" => { "version" => "5.10.1", "archname" => "x86_64-linux-thread-multi" } } })
- p.test([ "ubuntu-10.04" ], [ "x86" ], [[], [ "perl" ]],
- { "languages" => { "perl" => { "version" => "5.10.1", "archname" => "i486-linux-gnu-thread-multi" } } })
- p.test([ "ubuntu-10.04" ], [ "x64" ], [[], [ "perl" ]],
- { "languages" => { "perl" => { "version" => "5.10.1", "archname" => "x86_64-linux-gnu-thread-multi" } } })
- p.test([ "ubuntu-12.04" ], [ "x86" ], [[], [ "perl" ]],
- { "languages" => { "perl" => { "version" => "5.14.2", "archname" => "i686-linux-gnu-thread-multi-64int" } } })
- p.test([ "ubuntu-12.04", "ubuntu-13.04" ], [ "x64" ], [[], [ "perl" ]],
- { "languages" => { "perl" => { "version" => "5.14.2", "archname" => "x86_64-linux-gnu-thread-multi" } } })
- end
-end
diff --git a/platform_simulation_specs/plugins/php_spec.rb b/platform_simulation_specs/plugins/php_spec.rb
deleted file mode 100644
index 6fe00caf..00000000
--- a/platform_simulation_specs/plugins/php_spec.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# Author:: Doug MacEachern <dougm@vmware.com>
-# Author:: Theodore Nordsieck (<theo@chef.io>)
-# Copyright:: Copyright (c) 2009 VMware, Inc.
-# Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin php" do
- test_plugin(%w{languages php}, [ "php" ]) do |p|
- p.test([ "centos-5.9", "centos-6.4", "ubuntu-10.04", "ubuntu-12.04" ], %w{x86 x64}, [[]],
- { "languages" => { "php" => nil } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[]],
- { "languages" => { "php" => nil } })
- p.test([ "centos-5.9", "centos-6.4" ], %w{x86 x64}, [[ "php" ]],
- { "languages" => { "php" => { "version" => "5.3.3" } } })
- p.test([ "ubuntu-10.04" ], %w{x86 x64}, [[ "php" ]],
- { "languages" => { "php" => { "version" => "5.3.2-1ubuntu4.20" } } })
- p.test([ "ubuntu-12.04" ], %w{x86 x64}, [[ "php" ]],
- { "languages" => { "php" => { "version" => "5.3.10-1ubuntu3.7" } } })
- p.test([ "ubuntu-13.04" ], [ "x64" ], [[ "php" ]],
- { "languages" => { "php" => { "version" => "5.4.9-4ubuntu2.2" } } })
- end
-end
diff --git a/platform_simulation_specs/plugins/python_spec.rb b/platform_simulation_specs/plugins/python_spec.rb
deleted file mode 100644
index 93cf5728..00000000
--- a/platform_simulation_specs/plugins/python_spec.rb
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# Author:: Adam Jacob (<adam@chef.io>)
-# Author:: Theodore Nordsieck (<theo@chef.io>)
-# Copyright:: Copyright (c) 2008-2016 Chef Software, Inc.
-# License:: Apache License, Version 2.0
-#
-# 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.rb"
-require_relative "../common/ohai_plugin_common.rb"
-
-describe Ohai::System, "plugin python" do
- test_plugin(%w{languages python}, [ "python" ]) do |p|
- p.test([ "centos-5.9" ], %w{x86 x64}, [[], [ "python" ]],
- { "languages" => { "python" => { "version" => "2.4.3" } } })
- p.test([ "centos-6.4" ], %w{x86 x64}, [[], [ "python" ]],
- { "languages" => { "python" => { "version" => "2.6.6" } } })
- p.test([ "ubuntu-10.04" ], %w{x86 x64}, [[], [ "python" ]],
- { "languages" => { "python" => { "version" => "2.6.5" } } })
- p.test([ "ubuntu-12.04" ], %w{x86 x64}, [[], [ "python" ]],
- { "languages" => { "python" => { "version" => "2.7.3" } } })
- p.test([ "ubuntu-13.04" ], ["x64"], [[], ["python"]],
- { "languages" => { "python" => { "version" => "2.7.4" } } })
- end
-end