1

我想要实现的是通过使用 watchr 来跟踪两个目录中的文件更改。

我的文件结构如下:

/PluginDir
    /classes
        Wrapper.php
    /Tests
        /classes
           WrapperTest.php
           autotest_watchr.rb

autotest_watchr.rb 的内容如下:

watch("../../classes/(.*).php") do |match|
    run_test %{#{match[1]}Test.php}
end

watch(".*Test.php") do |match|
    run_test match[0]
end

def run_test(file)
    clear_console()

    unless File.exists?(file)
        puts "#{file} does not exists"
        return
    end

    puts "Running #{file}"
    results = `phpunit #{file}`
    puts results

    if results.match(/OK/)
        notify "#{file}", "Tests Passed Successfuly", 4500
    elsif results.match(/FAILURES\!/)
        notify_failed file, results
    end
end

def notify_failed cmd, results
    failed_examples =   results.scan(/([0-9]+\))\s+(.*)/)
    notify "#{cmd}", failed_examples[0], 6000
end

def notify title, msg, show_time
    systemMsg   =   "notifu.exe /p \"#{title}\" /m \"#{msg}\" /d #{show_time}"
    systemMsg.gsub('“', "'")
    system systemMsg
end

def clear_console
    system "cls"
end

然后从文件夹 /PluginDir/Tests/classes/ 我从 cmd 执行以下命令:

watchr autotest_watchr.rb

在这种情况下,脚本开始正常执行,当我在我的测试文件中进行修改时,控制台会更新,但是当我在 /PluginDir/classes/*.php 文件中创建修改时,我没有得到任何在我的控制台中更新。

为什么?

注意:在第一次观看(“../../classes/......

4

1 回答 1

1

在您的第一个搜索字符串“../../classes/(.*).php”中,我认为“。” character 实际上是任何单个字符的占位符。对于您的使用,您可能需要使用反斜杠对其进行转义,因此它将是:

'\.\./\.\./classes/(.*)\.php'

于 2013-06-20T09:27:43.833 回答