mirror of
https://github.com/cpm-cmake/CPM.cmake.git
synced 2025-11-19 16:57:56 -05:00
132 lines
2.8 KiB
Ruby
132 lines
2.8 KiB
Ruby
require 'fileutils'
|
|
require 'open3'
|
|
|
|
CPMPath = File.expand_path('../../cmake/CPM.cmake', __dir__)
|
|
raise "Cannot file 'CPM.cmake' at '#{CPMPath}'" if !File.file?(CPMPath)
|
|
|
|
CommonHeader = <<~CMAKE
|
|
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
|
|
include("#{CPMPath}")
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
|
|
CMAKE
|
|
|
|
TestDir = File.expand_path("./tmp/#{Time.now.strftime('%Y_%m_%d-%H_%M_%S')}")
|
|
raise "Test directory '#{TestDir}' already exists" if File.exist?(TestDir)
|
|
|
|
puts "Running CPM.cmake integration tests"
|
|
puts "Temp directory: '#{TestDir}'"
|
|
|
|
class CMakeListsBuilder
|
|
def initialize
|
|
@contents = ''
|
|
end
|
|
def literal(lit)
|
|
@contents += lit + "\n";
|
|
self
|
|
end
|
|
def package(pack)
|
|
literal "CPMAddPackage(#{pack})"
|
|
end
|
|
def exe(exe, sources)
|
|
@contents += "add_executable(#{exe}\n"
|
|
@contents += sources.map { |src|
|
|
' ' + if src['/']
|
|
src
|
|
else
|
|
File.expand_path("#{src}", __dir__)
|
|
end
|
|
}.join("\n")
|
|
@contents += "\n)\n"
|
|
self
|
|
end
|
|
def link_libs(target, libs)
|
|
literal "target_link_libraries(#{target} #{libs})\n"
|
|
end
|
|
def to_s
|
|
@contents
|
|
end
|
|
end
|
|
|
|
class ExecuteResult
|
|
def initialize(out, err, status)
|
|
@out = out
|
|
@err = err
|
|
@status = status
|
|
end
|
|
attr :out, :err, :status
|
|
end
|
|
|
|
class Project
|
|
def initialize(name)
|
|
@name = name
|
|
@dir = File.join(TestDir, name)
|
|
|
|
FileUtils.mkdir_p(File.join(TestDir, name))
|
|
end
|
|
|
|
def build_cmake_lists(opts = {}, &block)
|
|
builder = CMakeListsBuilder.new
|
|
if !opts[:no_default_header]
|
|
builder.literal(CommonHeader)
|
|
builder.literal("project(#{@name})")
|
|
end
|
|
text = builder.instance_eval &block
|
|
|
|
File.write(File.join(@dir, 'CMakeLists.txt'), text)
|
|
end
|
|
|
|
def configure(args = '')
|
|
ExecuteResult.new *Open3.capture3("cmake . #{args}", chdir: @dir)
|
|
end
|
|
end
|
|
|
|
@cur_file = ''
|
|
@tests = {}
|
|
def add_test(name, func)
|
|
raise "#{@cur_file}: Test #{name} is already defined from another file" if @tests[name]
|
|
@tests[name] = func
|
|
end
|
|
|
|
# check funcs
|
|
class CheckFail < StandardError
|
|
def initialize(msg)
|
|
super
|
|
end
|
|
end
|
|
|
|
def check(b)
|
|
raise CheckFail.new "expected 'true'" if !b
|
|
end
|
|
|
|
Dir['tests/*.rb'].sort.each do |file|
|
|
@cur_file = file
|
|
load './' + file
|
|
end
|
|
|
|
# sort alphabetically
|
|
sorted_tests = @tests.to_a.sort {|a, b| a[0] <=> b[0] }
|
|
|
|
num_succeeded = 0
|
|
num_failed = 0
|
|
|
|
sorted_tests.each do |name, func|
|
|
puts "Running '#{name}'"
|
|
proj = Project.new(name)
|
|
begin
|
|
func.(proj)
|
|
num_succeeded += 1
|
|
puts ' success'
|
|
rescue CheckFail => error
|
|
num_failed += 1
|
|
STDERR.puts " #{name}: check failed '#{error.message}'"
|
|
STDERR.puts " backtrace:\n #{error.backtrace.join("\n ")}"
|
|
STDERR.puts
|
|
end
|
|
end
|
|
|
|
puts "Ran #{num_succeeded + num_failed} tests"
|
|
puts "Succeeded: #{num_succeeded}"
|
|
puts "Failed: #{num_failed}"
|
|
|
|
exit(num_failed)
|