我最喜欢的是使用监视器跟踪两个目录中的文件更改。
我的文件结构如下:
/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
在这种情况下,脚本开始正常执行,当我在Test文件中进行修改时,控制台会更新,但是当我在/PluginDir/classes/*.php文件中创建修改时,我会做在我的控制台中没有得到任何更新。
为什么?
注意:在第一次观看时(“../../ classes / ......我也试过匹配[0],以防正则变量不正确,但剧本仍无效
答案 0 :(得分:1)
在你的第一个搜索字符串“../../classes/(.*).php”中,我认为是“。”角色实际上是任何单个角色的占位符。 对于您的使用,您可能需要使用反斜杠来逃避它,因此它将是:
'\.\./\.\./classes/(.*)\.php'