[asterisk-commits] sgriepentrog: testsuite/asterisk/trunk r4315 - in /asterisk/trunk/tests/pbx: ...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Nov 1 16:38:02 CDT 2013
Author: sgriepentrog
Date: Fri Nov 1 16:38:00 2013
New Revision: 4315
URL: http://svnview.digium.com/svn/testsuite?view=rev&rev=4315
Log:
Move dialplan test into pbx test subdir
This relocates the dialplan test into pbx subdirectory where it belongs. There is no other change other than to update the test lists in both directories appropriately.
There is no issue associated with this change.
Added:
asterisk/trunk/tests/pbx/callerid_match/
asterisk/trunk/tests/pbx/callerid_match/configs/
asterisk/trunk/tests/pbx/callerid_match/configs/ast1/
asterisk/trunk/tests/pbx/callerid_match/configs/ast1/extensions.conf (with props)
asterisk/trunk/tests/pbx/callerid_match/run-test (with props)
asterisk/trunk/tests/pbx/callerid_match/sample1.call (with props)
asterisk/trunk/tests/pbx/callerid_match/sample2.call (with props)
asterisk/trunk/tests/pbx/callerid_match/sample3.call (with props)
asterisk/trunk/tests/pbx/callerid_match/sample4.call (with props)
asterisk/trunk/tests/pbx/callerid_match/sample5.call (with props)
asterisk/trunk/tests/pbx/callerid_match/sample6.call (with props)
asterisk/trunk/tests/pbx/callerid_match/sample7.call (with props)
asterisk/trunk/tests/pbx/callerid_match/test-config.yaml (with props)
asterisk/trunk/tests/pbx/dialplan_reload/
asterisk/trunk/tests/pbx/dialplan_reload/configs/
asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/
asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/extensions.conf (with props)
asterisk/trunk/tests/pbx/dialplan_reload/run-test (with props)
asterisk/trunk/tests/pbx/dialplan_reload/test-config.yaml (with props)
Modified:
asterisk/trunk/tests/pbx/tests.yaml
Added: asterisk/trunk/tests/pbx/callerid_match/configs/ast1/extensions.conf
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/configs/ast1/extensions.conf?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/configs/ast1/extensions.conf (added)
+++ asterisk/trunk/tests/pbx/callerid_match/configs/ast1/extensions.conf Fri Nov 1 16:38:00 2013
@@ -1,0 +1,89 @@
+[test]
+
+; sample1: is call sent to matching callerid
+
+exten => agi1/2565550101,1,Answer
+exten => agi1/2565550101,n,Set(AGISIGHUP=No)
+exten => agi1/2565550101,n,AGI(agi://127.0.0.1:4573)
+exten => agi1/2565550101,n,Hangup
+
+exten => agi1,1,Answer
+exten => agi1,n,Hangup
+
+; sample2: is call sent to default when no match to specific callerid
+
+exten => agi2/2565550299,1,Answer
+exten => agi2/2565550299,n,Hangup
+
+exten => agi2,1,Answer
+exten => agi2,n,Set(AGISIGHUP=No)
+exten => agi2,n,AGI(agi://127.0.0.1:4573)
+exten => agi2,n,Hangup
+
+; sample3: can has match null?
+
+exten => agi3/,1,Answer
+exten => agi3/,n,Set(AGISIGHUP=No)
+exten => agi3/,n,AGI(agi://127.0.0.1:4573)
+exten => agi3/,n,Hangup
+
+exten => agi3,1,Answer
+exten => agi3,n,Hangup
+
+; sample4: and vice versa
+
+exten => agi4,1,Answer
+exten => agi4,n,Set(AGISIGHUP=No)
+exten => agi4,n,AGI(agi://127.0.0.1:4573)
+exten => agi4,n,Hangup
+
+exten => agi4/,1,Answer
+exten => agi4/,n,Hangup
+
+; sample5: make sure order doesn't matter
+
+exten => agi5,1,Answer
+exten => agi5,n,Hangup
+
+exten => agi5/,1,Answer
+exten => agi5/,n,Set(AGISIGHUP=No)
+exten => agi5/,n,AGI(agi://127.0.0.1:4573)
+exten => agi5/,n,Hangup
+
+; sample6: check that null doesn't match non-null cid
+
+exten => agi6,1,Answer
+exten => agi6,n,Hangup
+
+exten => agi6/,1,Answer
+exten => agi6/,n,Hangup
+
+exten => agi6/2565550606,1,Answer
+exten => agi6/2565550606,n,Set(AGISIGHUP=No)
+exten => agi6/2565550606,n,AGI(agi://127.0.0.1:4573)
+exten => agi6/2565550606,n,Hangup
+
+; sample7: insure correct length is matched
+
+exten => agi7,1,Answer
+exten => agi7,n,Hangup
+
+exten => agi7/,1,Answer
+exten => agi7/,n,Hangup
+
+exten => agi7/1,1,Answer
+exten => agi7/1,n,Hangup
+
+exten => agi7/12,1,Answer
+exten => agi7/12,n,Set(AGISIGHUP=No)
+exten => agi7/12,n,AGI(agi://127.0.0.1:4573)
+exten => agi7/12,n,Hangup
+
+exten => agi7/123,1,Answer
+exten => agi7/123,n,Hangup
+
+; other end of calls
+
+exten => wait,1,Answer
+exten => wait,n,Wait(1)
+exten => wait,n,Hangup
Propchange: asterisk/trunk/tests/pbx/callerid_match/configs/ast1/extensions.conf
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/configs/ast1/extensions.conf
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/configs/ast1/extensions.conf
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/run-test
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/run-test?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/run-test (added)
+++ asterisk/trunk/tests/pbx/callerid_match/run-test Fri Nov 1 16:38:00 2013
@@ -1,0 +1,85 @@
+#!/usr/bin/env python
+'''
+Copyright (C) 2010, Digium, Inc.
+Brett Bryant <bbryant at digium.com> (original call-files)
+Scott Griepentrog <sgriepentrog at digium.com> (adjusted for callerid_match)
+
+
+This program is free software, distributed under the terms of
+the GNU General Public License Version 2.
+'''
+
+import sys
+import os
+import logging
+
+from twisted.internet import reactor
+from shutil import move, copy
+
+sys.path.append("lib/python")
+from asterisk.TestCase import TestCase
+
+LOGGER = logging.getLogger(__name__)
+
+TESTDIR = os.path.dirname(os.path.realpath(__file__))
+
+class CallFilesTest(TestCase):
+
+ num_tests = 0
+
+ def __init__(self):
+ super(CallFilesTest, self).__init__()
+
+ self.test = 0
+ self.create_asterisk()
+
+ # set the number of tests based on the number of call files
+ for name in os.listdir(TESTDIR):
+ if name.startswith("sample"):
+ self.num_tests += 1
+ LOGGER.info("will run " + str(self.num_tests) + " tests for " + name)
+
+
+ def run(self):
+ super(CallFilesTest, self).run()
+
+ self.create_fastagi_factory()
+ self.launch_test()
+
+ def fastagi_connect(self, agi):
+ LOGGER.info("sample%s.call file executed." % (self.test))
+
+ if self.test < self.num_tests:
+ self.launch_test()
+ else: self.finalize()
+
+ def move_file(self, i):
+ LOGGER.info("Moving the sample%s.call file to the spool dir..." % (i))
+
+ copy("%s/sample%s.call" % (TESTDIR, i),
+ "%s/etc/sample%s.call" % (self.ast[0].base, i))
+
+ move("%s/etc/sample%s.call" % (self.ast[0].base, i), "%s%s/outgoing/" %
+ (self.ast[0].base, self.ast[0].directories["astspooldir"]))
+
+ def launch_test(self):
+ self.test += 1
+ self.move_file(self.test)
+
+ def finalize(self):
+ self.passed = True
+ self.stop_reactor()
+
+def main():
+ test = CallFilesTest()
+ reactor.run()
+
+ if not test.passed:
+ return 1
+
+ return 0
+
+if __name__ == "__main__":
+ sys.exit(main() or 0)
+
+# vim:sw=4:ts=4:expandtab:textwidth=79
Propchange: asterisk/trunk/tests/pbx/callerid_match/run-test
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/run-test
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/run-test
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/sample1.call
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/sample1.call?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/sample1.call (added)
+++ asterisk/trunk/tests/pbx/callerid_match/sample1.call Fri Nov 1 16:38:00 2013
@@ -1,0 +1,8 @@
+Channel: Local/agi1 at test
+Codecs: alaw
+MaxRetries: 2
+RetryTime: 60
+WaitTime: 30
+CallerID: "Test1" <2565550101>
+Application: Wait
+Data: 1
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample1.call
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample1.call
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample1.call
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/sample2.call
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/sample2.call?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/sample2.call (added)
+++ asterisk/trunk/tests/pbx/callerid_match/sample2.call Fri Nov 1 16:38:00 2013
@@ -1,0 +1,9 @@
+Channel: Local/agi2 at test
+Codecs: alaw
+MaxRetries: 2
+RetryTime: 60
+WaitTime: 30
+CallerID: "Test2" <2565550202>
+Context: test
+Extension: wait
+Priority: 1
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample2.call
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample2.call
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample2.call
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/sample3.call
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/sample3.call?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/sample3.call (added)
+++ asterisk/trunk/tests/pbx/callerid_match/sample3.call Fri Nov 1 16:38:00 2013
@@ -1,0 +1,9 @@
+Channel: Local/agi3 at test
+Codecs: alaw
+MaxRetries: 2
+RetryTime: 60
+WaitTime: 30
+CallerID: "Test3" <>
+Context: test
+Extension: wait
+Priority: 1
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample3.call
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample3.call
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample3.call
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/sample4.call
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/sample4.call?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/sample4.call (added)
+++ asterisk/trunk/tests/pbx/callerid_match/sample4.call Fri Nov 1 16:38:00 2013
@@ -1,0 +1,9 @@
+Channel: Local/agi4 at test
+Codecs: alaw
+MaxRetries: 2
+RetryTime: 60
+WaitTime: 30
+CallerID: "Test4" <2565550404>
+Context: test
+Extension: wait
+Priority: 1
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample4.call
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample4.call
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample4.call
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/sample5.call
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/sample5.call?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/sample5.call (added)
+++ asterisk/trunk/tests/pbx/callerid_match/sample5.call Fri Nov 1 16:38:00 2013
@@ -1,0 +1,9 @@
+Channel: Local/agi5 at test
+Codecs: alaw
+MaxRetries: 2
+RetryTime: 60
+WaitTime: 30
+CallerID: "Test5" <>
+Context: test
+Extension: wait
+Priority: 1
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample5.call
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample5.call
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample5.call
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/sample6.call
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/sample6.call?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/sample6.call (added)
+++ asterisk/trunk/tests/pbx/callerid_match/sample6.call Fri Nov 1 16:38:00 2013
@@ -1,0 +1,9 @@
+Channel: Local/agi6 at test
+Codecs: alaw
+MaxRetries: 2
+RetryTime: 60
+WaitTime: 30
+CallerID: "Test6" <2565550606>
+Context: test
+Extension: wait
+Priority: 1
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample6.call
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample6.call
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample6.call
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/sample7.call
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/sample7.call?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/sample7.call (added)
+++ asterisk/trunk/tests/pbx/callerid_match/sample7.call Fri Nov 1 16:38:00 2013
@@ -1,0 +1,9 @@
+Channel: Local/agi7 at test
+Codecs: alaw
+MaxRetries: 2
+RetryTime: 60
+WaitTime: 30
+CallerID: "Test7" <12>
+Context: test
+Extension: wait
+Priority: 1
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample7.call
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample7.call
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/sample7.call
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/callerid_match/test-config.yaml
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/callerid_match/test-config.yaml?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/callerid_match/test-config.yaml (added)
+++ asterisk/trunk/tests/pbx/callerid_match/test-config.yaml Fri Nov 1 16:38:00 2013
@@ -1,0 +1,11 @@
+testinfo:
+ summary: 'Test callerid pattern matching'
+ description: 'Sends calls into test context with various callerid'
+
+properties:
+ minversion: '1.8.0.0'
+ dependencies:
+ - python: 'twisted'
+ - python: 'starpy'
+ tags:
+ - dialplan
Propchange: asterisk/trunk/tests/pbx/callerid_match/test-config.yaml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/callerid_match/test-config.yaml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/callerid_match/test-config.yaml
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/extensions.conf
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/extensions.conf?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/extensions.conf (added)
+++ asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/extensions.conf Fri Nov 1 16:38:00 2013
@@ -1,0 +1,3 @@
+[incoming_1]
+exten => 60./,1,NoOp()
+exten => 60.,1,NoOp()
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/extensions.conf
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/extensions.conf
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/configs/ast1/extensions.conf
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/dialplan_reload/run-test
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/dialplan_reload/run-test?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/dialplan_reload/run-test (added)
+++ asterisk/trunk/tests/pbx/dialplan_reload/run-test Fri Nov 1 16:38:00 2013
@@ -1,0 +1,91 @@
+#!/usr/bin/env python
+'''
+Copyright (C) 2010, Digium, Inc.
+Scott Griepentrog <sgriepentrog at digium.com>
+
+This program is free software, distributed under the terms of
+the GNU General Public License Version 2.
+'''
+
+import sys
+import logging
+from twisted.internet import reactor
+
+sys.path.append("lib/python")
+from asterisk.TestCase import TestCase
+LOGGER = logging.getLogger(__name__)
+
+workingdir = "dialplan-reload"
+testdir = "tests/%s" % workingdir
+
+class DialplanReloadTest(TestCase):
+ count = 0
+
+ def __init__(self):
+ TestCase.__init__(self)
+ # artificially high timeout as this can take a while
+ self.reactor_timeout = 300
+ self.create_asterisk(1)
+
+ def run(self):
+ TestCase.run(self)
+
+ def callback(defer):
+ LOGGER.info("DIALPLAN SHOW = " + defer.output);
+ print defer.output.strip()
+ if defer.output.find("CID match ''") == -1:
+ print "Dialplan did not load correctly"
+ reactor.callLater(1,self.failure)
+ else:
+ reactor.callLater(3,self.reload)
+
+ def errback(failure):
+ LOGGER.error("CLI dialplan show failed");
+ reactor.callLater(1,self.failure)
+
+ # log the trouble context just to be sure it was loaded
+ df = self.ast[0].cli_exec("dialplan show incoming_1")
+ df.addCallback(callback)
+ df.addErrback(errback)
+
+ def reload(self):
+
+ def callback(defer):
+ LOGGER.info("RESTART = " + defer.output)
+ print "Restart #" + str(self.count) + " = " + defer.output.strip()
+ self.count += 1
+ if self.count == 50:
+ reactor.callLater(3,self.success)
+ else:
+ reactor.callLater(3,self.reload)
+
+ def errback(failure):
+ LOGGER.error("CLI restart failed")
+ reactor.callLater(1,self.failure)
+
+ df = self.ast[0].cli_exec("core restart gracefully")
+ df.addCallback(callback)
+ df.addErrback(errback)
+
+ LOGGER.info("Restarted # " + str(self.count))
+
+ def success(self):
+ self.passed = True
+ self.stop_reactor()
+
+ def failure(self):
+ self.stop_reactor()
+
+def main():
+ test = DialplanReloadTest()
+ test.start_asterisk()
+ reactor.run()
+ test.stop_asterisk()
+ if not test.passed:
+ return 1
+ return 0
+
+if __name__ == "__main__":
+ sys.exit(main() or 0)
+
+# vim:sw=4:ts=4:expandtab:textwidth=79
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/run-test
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/run-test
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/run-test
------------------------------------------------------------------------------
svn:mime-type = text/plain
Added: asterisk/trunk/tests/pbx/dialplan_reload/test-config.yaml
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/dialplan_reload/test-config.yaml?view=auto&rev=4315
==============================================================================
--- asterisk/trunk/tests/pbx/dialplan_reload/test-config.yaml (added)
+++ asterisk/trunk/tests/pbx/dialplan_reload/test-config.yaml Fri Nov 1 16:38:00 2013
@@ -1,0 +1,12 @@
+testinfo:
+ summary: 'Test dialplan reload with null length cidmatch'
+ description: |
+ 'This test verifies that reloading the dialplan with two accidentally matching entries will not corrupt memory and cause crash.'
+
+properties:
+ minversion: '1.8.0.0'
+ dependencies:
+ - python : 'twisted'
+ - python : 'starpy'
+ tags:
+ - dialplan
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/test-config.yaml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/test-config.yaml
------------------------------------------------------------------------------
svn:keywords = Author Date Id Revision
Propchange: asterisk/trunk/tests/pbx/dialplan_reload/test-config.yaml
------------------------------------------------------------------------------
svn:mime-type = text/plain
Modified: asterisk/trunk/tests/pbx/tests.yaml
URL: http://svnview.digium.com/svn/testsuite/asterisk/trunk/tests/pbx/tests.yaml?view=diff&rev=4315&r1=4314&r2=4315
==============================================================================
--- asterisk/trunk/tests/pbx/tests.yaml (original)
+++ asterisk/trunk/tests/pbx/tests.yaml Fri Nov 1 16:38:00 2013
@@ -2,6 +2,8 @@
tests:
- test: 'dialplan'
- test: 'call-files'
+ - test: 'callerid_match'
+ - test: 'dialplan_reload'
- test: 'pbx_lua_goto'
- test: 'pbx_lua_background'
# this test currently doesn't work due to a bug (ASTERISK-18230)
More information about the asterisk-commits
mailing list