----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviewboard.asterisk.org/r/4452/#review14600 -----------------------------------------------------------
/asterisk/trunk/lib/python/asterisk/pjsua_mod.py <https://reviewboard.asterisk.org/r/4452/#comment25146> Suggestion, you could remove the ua_cfg variable on line 136 and here, on line 140, use: self.lib.init(ua_cfg=pj.UAConfig()) I checked and you aren't using the ua_cfg variable anywhere else that I can tell. /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_dialplan/non_local_channels/test-config.yaml <https://reviewboard.asterisk.org/r/4452/#comment25147> You are missing the description for the "Extension, Priority, Label, Context" case. /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/non_local_channels/run-test <https://reviewboard.asterisk.org/r/4452/#comment25151> Just an observation... Here, you are using the reStructuredText (reST) style for your docstring (with the :param), but you don't use that style on line 58 (or anywhere else from what I can tell). /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/non_local_channels/run-test <https://reviewboard.asterisk.org/r/4452/#comment25155> I think I would rework this to either use this structure (which is used throughout this file), or the self.orig_dst_app and self.orig_src_app variables. From what I can tell, this is redundant. /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/non_local_channels/run-test <https://reviewboard.asterisk.org/r/4452/#comment25153> Curious, what is the purpose of having a temporary variable at the class level? /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/non_local_channels/run-test <https://reviewboard.asterisk.org/r/4452/#comment25154> You could use a temporary variable here, in the local scope, w/o having to rely on something at the class level. I see a lot of duplication in the run-test files. I suggest that we refactor and abstract the common pieces of code into a base class somewhere. For instance the check_results function could be abstracted and I saw a couple of more instances where we could apply some smart refactoring such that reuse would be possible. - Ashley Sanders On March 4, 2015, 12:58 p.m., jbigelow wrote: > > ----------------------------------------------------------- > This is an automatically generated e-mail. To reply, visit: > https://reviewboard.asterisk.org/r/4452/ > ----------------------------------------------------------- > > (Updated March 4, 2015, 12:58 p.m.) > > > Review request for Asterisk Developers. > > > Bugs: ASTERISK-24586 > https://issues.asterisk.org/jira/browse/ASTERISK-24586 > > > Repository: testsuite > > > Description > ------- > > This adds some local and non-local channel subscription tests for ARI. These > tests ensure ARI events occur and/or don't occur for the appropriate stasis > app(s). Due to the variations and small differences of these, the > test-config.yaml descriptions of each is the best way to describe what they > do. > > Four tests have been added under > 'tests/rest_api/applications/channel-subscriptions/'. : > * originate_to_dialplan/non_local_channels - Similiar to the existing test > that this patch modifies as mentioned below. This required modifying > pjsua_mod.py to allow more calls. > * originate_to_other_stasis_app/local_channels - Creates two websockets, one > for for each stasis app. Originates a local channel from AppA where half is > sent into AppB and the other half send into the dialplan. > * originate_to_other_stasis_app/non_local_channels - Creates two websockets, > one for for each stasis app. Originates a PJSIP channel from AppA to a pjsua > phone where is is placed into AppB. > * originate_to_stasis_app/local_channels > > Note: The test 'tests/rest_api/applications/subscribe-channel' test has been > renamed to 'basic-subscribe' under the same location as the new tests. > > The following test has been modified to ensure no ARI events are received: > * tests/rest_api/channels/originate_to_dialplan > > > Diffs > ----- > > > /asterisk/trunk/tests/rest_api/channels/originate_to_dialplan/test-config.yaml > 6475 > /asterisk/trunk/tests/rest_api/applications/tests.yaml 6475 > > /asterisk/trunk/tests/rest_api/applications/subscribe-channel/test-config.yaml > 6475 > > /asterisk/trunk/tests/rest_api/applications/subscribe-channel/subscribe_channel.py > 6475 > > /asterisk/trunk/tests/rest_api/applications/subscribe-channel/configs/ast1/extensions.conf > 6475 > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/tests.yaml > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_stasis_app/tests.yaml > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_stasis_app/local_channels/test-config.yaml > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_stasis_app/local_channels/configs/ast1/extensions.conf > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/tests.yaml > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/non_local_channels/test-config.yaml > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/non_local_channels/run-test > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/non_local_channels/configs/ast1/pjsip.conf > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/non_local_channels/configs/ast1/http.conf > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/local_channels/test-config.yaml > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/local_channels/run-test > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/local_channels/configs/ast1/http.conf > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_other_stasis_app/local_channels/configs/ast1/extensions.conf > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_dialplan/tests.yaml > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_dialplan/non_local_channels/test-config.yaml > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_dialplan/non_local_channels/configs/ast1/pjsip.conf > PRE-CREATION > > /asterisk/trunk/tests/rest_api/applications/channel-subscriptions/originate_to_dialplan/non_local_channels/configs/ast1/extensions.conf > PRE-CREATION > /asterisk/trunk/lib/python/asterisk/pjsua_mod.py 6475 > > Diff: https://reviewboard.asterisk.org/r/4452/diff/ > > > Testing > ------- > > * Executed each test successfully 30+ times. > * Changed the code to force a failure to ensure tests properly failed. > * Review logs to ensure operation is as expected. > > > Thanks, > > jbigelow > >
-- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- asterisk-dev mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-dev