1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00
libv8/spec/location_spec.rb
Charles Lowell 6e2a27820a delegate makefile configuration to v8
therubyracer now delegates all lookup for its v8
compilation dependencies to the libv8 gem.

if you pass the --with-system-v8 flag to the libv8
gem on install, try to configure therubyracer upon
compile with the following options.

--with-v8-include, --with-v8-lib and --with-v8-dir

Otherwise, it will configure therubyracer to use
its own vendored version of v8.
2013-01-04 16:50:30 -06:00

51 lines
1.7 KiB
Ruby

require 'spec_helper'
describe "libv8 locations" do
before do
@context = mock(:CompilationContext)
end
describe "the system location" do
before do
@location = Libv8::Location::System.new
@context.stub(:dir_config)
end
describe "configuring a compliation context with it" do
before do
@context.stub(:find_header) {true}
@location.configure @context
end
it "adds the include path to the front of the include flags" do
@context.should have_received(:dir_config).with 'v8'
@context.should have_received(:find_header).with 'v8.h'
end
end
describe "when the v8.h header cannot be found" do
before do
@context.stub(:find_header) {false}
end
it "raises a NotFoundError" do
expect {@location.configure @context}.to raise_error Libv8::Location::System::NotFoundError
end
end
end
describe "the vendor location" do
before do
@location = Libv8::Location::Vendor.new
@context.stub(:incflags) {@incflags ||= "-I/usr/include -I/usr/local/include"}
@context.stub(:ldflags) {@ldflags ||= "-lobjc -lpthread"}
Libv8::Paths.stub(:include_paths) {["/frp/v8/include"]}
Libv8::Paths.stub(:object_paths) {["/frp/v8/obj/libv8_base.a", "/frp/v8/obj/libv8_snapshot.a"]}
@location.configure @context
end
it "prepends its own incflags before any pre-existing ones" do
@context.incflags.should eql "-I/frp/v8/include -I/usr/include -I/usr/local/include"
end
it "prepends the locations of any libv8 objects on the the ldflags" do
@context.ldflags.should eql "/frp/v8/obj/libv8_base.a /frp/v8/obj/libv8_snapshot.a -lobjc -lpthread"
end
end
end