yahns.git  about / heads / tags
sleepy, multi-threaded, non-blocking application server for Ruby
blob c609d5a581ef649bf31f8e8116ad846049e59a62 1865 bytes (raw)
$ git show HEAD:test/test_config.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
 
# Copyright (C) 2013-2016 all contributors <yahns-public@yhbt.net>
# License: GPL-3.0+ (https://www.gnu.org/licenses/gpl-3.0.txt)
# frozen_string_literal: true
require_relative 'helper'
require 'rack/lobster'

class TestConfig < Testcase
  ENV["N"].to_i > 1 and parallelize_me!

  def test_initialize
    cfg = Yahns::Config.new
    assert_instance_of Yahns::Config, cfg
  end

  def test_multi_conf_example
    pid = xfork do
      tmpdir = yahns_mktmpdir

      # modify the example config file for testing
      path = "examples/yahns_multi.conf.rb"
      cfgs = File.read(path)
      cfgs.gsub!(%r{/path/to/}, "#{tmpdir}/")
      conf = File.open("#{tmpdir}/yahns_multi.conf.rb", "w")
      conf.sync = true
      conf.write(cfgs)
      File.open("#{tmpdir}/another.ru", "w") do |fp|
        fp.puts("run Rack::Lobster.new\n")
      end
      FileUtils.mkpath("#{tmpdir}/another")

      cfg = Yahns::Config.new(conf.path)
      FileUtils.rm_rf(tmpdir)
      exit!(Yahns::Config === cfg)
    end
    _, status = Process.waitpid2(pid)
    assert status.success?
  end

  def test_rack_basic_conf_example
    pid = xfork do
      tmpdir = yahns_mktmpdir

      # modify the example config file for testing
      path = "examples/yahns_rack_basic.conf.rb"
      cfgs = File.read(path)
      cfgs.gsub!(%r{/path/to/}, "#{tmpdir}/")
      Dir.mkdir("#{tmpdir}/my_app")
      Dir.mkdir("#{tmpdir}/my_logs")
      Dir.mkdir("#{tmpdir}/my_pids")
      conf = File.open("#{tmpdir}/yahns_rack_basic.conf.rb", "w")
      conf.sync = true
      conf.write(cfgs)
      File.open("#{tmpdir}/my_app/config.ru", "w") do |fp|
        fp.puts("run Rack::Lobster.new\n")
      end
      cfg = Yahns::Config.new(conf.path)
      FileUtils.rm_rf(tmpdir) if tmpdir
      exit!(Yahns::Config === cfg)
    end
    _, status = Process.waitpid2(pid)
    assert status.success?
  end
end

git clone git://yhbt.net/yahns.git
git clone https://yhbt.net/yahns.git