twilio-test-toolkit 3.2.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +1 -1
- data/lib/twilio-test-toolkit/call_scope.rb +11 -11
- data/lib/twilio-test-toolkit/version.rb +1 -1
- data/spec/dummy/log/test.log +428 -0
- metadata +2 -2
data/README.md
CHANGED
@@ -51,7 +51,7 @@ TTT depends on [Capybara](https://github.com/jnicklas/capybara). It uses Capybar
|
|
51
51
|
|
52
52
|
TTT expects your controller actions to behave like well-behaved Twilio callbacks. That is, you need to respond to XML-formatted requests, and need to respond with a 200 OK. Twilio will not follow 301 or 302 redirects properly, and neither will TTT (see below for more details).
|
53
53
|
|
54
|
-
TTT has
|
54
|
+
TTT has been tested with RSpec on Rails, and limited testing has been done with Sinatra. It might work on other test frameworks or other Rack-based frameworks. Feel free to submit pull requests to improve compatibility with these.
|
55
55
|
|
56
56
|
If it works with Twilio, it should work with TTT. If not, open an issue/pull request.
|
57
57
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module TwilioTestToolkit
|
2
2
|
# Models a scope within a call.
|
3
|
-
class CallScope
|
3
|
+
class CallScope
|
4
4
|
# Stuff for redirects
|
5
5
|
def has_redirect_to?(url)
|
6
6
|
el = get_redirect_node
|
@@ -79,7 +79,7 @@ module TwilioTestToolkit
|
|
79
79
|
def gather?
|
80
80
|
@xml.name == "Gather"
|
81
81
|
end
|
82
|
-
|
82
|
+
|
83
83
|
def gather_action
|
84
84
|
raise "Not a gather" unless gather?
|
85
85
|
return @xml["action"]
|
@@ -120,11 +120,11 @@ module TwilioTestToolkit
|
|
120
120
|
|
121
121
|
private
|
122
122
|
def get_redirect_node
|
123
|
-
@xml.at_xpath("Redirect")
|
123
|
+
@xml.at_xpath("Redirect")
|
124
124
|
end
|
125
125
|
|
126
126
|
def get_gather_node
|
127
|
-
@xml.at_xpath("Gather")
|
127
|
+
@xml.at_xpath("Gather")
|
128
128
|
end
|
129
129
|
|
130
130
|
def formatted_digits(digits, options = {})
|
@@ -164,7 +164,7 @@ module TwilioTestToolkit
|
|
164
164
|
p = path
|
165
165
|
|
166
166
|
# Strip off ".xml" off of the end of any path
|
167
|
-
p = path[0...path.length - ".xml".length] if path.downcase.
|
167
|
+
p = path[0...path.length - ".xml".length] if path.downcase.match(/\.xml$/)
|
168
168
|
return p
|
169
169
|
end
|
170
170
|
|
@@ -175,22 +175,22 @@ module TwilioTestToolkit
|
|
175
175
|
@current_path = normalize_redirect_path(path)
|
176
176
|
|
177
177
|
# Post the query
|
178
|
-
rack_test_session_wrapper = Capybara.current_session.driver
|
178
|
+
rack_test_session_wrapper = Capybara.current_session.driver
|
179
179
|
@response = rack_test_session_wrapper.send(options[:method] || :post, @current_path,
|
180
|
-
:format => :xml,
|
181
|
-
:CallSid => @root_call.sid,
|
182
|
-
:From => @root_call.from_number,
|
180
|
+
:format => :xml,
|
181
|
+
:CallSid => @root_call.sid,
|
182
|
+
:From => @root_call.from_number,
|
183
183
|
:Digits => formatted_digits(options[:digits], :finish_on_key => options[:finish_on_key]),
|
184
184
|
:To => @root_call.to_number,
|
185
185
|
:AnsweredBy => (options[:is_machine] ? "machine" : "human")
|
186
186
|
)
|
187
187
|
|
188
188
|
# All Twilio responses must be a success.
|
189
|
-
raise "Bad response: #{@response.status}" unless @response.status == 200
|
189
|
+
raise "Bad response: #{@response.status}" unless @response.status == 200
|
190
190
|
|
191
191
|
# Load the xml
|
192
192
|
data = @response.body
|
193
|
-
@response_xml = Nokogiri::XML.parse(data)
|
193
|
+
@response_xml = Nokogiri::XML.parse(data)
|
194
194
|
set_xml(@response_xml.at_xpath("Response"))
|
195
195
|
end
|
196
196
|
|
data/spec/dummy/log/test.log
CHANGED
@@ -1956,3 +1956,431 @@ Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digit
|
|
1956
1956
|
Processing by TwilioController#test_start as XML
|
1957
1957
|
Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine"}
|
1958
1958
|
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1959
|
+
Connecting to database specified by database.yml
|
1960
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1961
|
+
Processing by TwilioController#test_start as XML
|
1962
|
+
Parameters: {"CallSid"=>"0edae2d7-b7e2-472c-bd3d-51ac27093066", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1963
|
+
Rendered twilio/test_start.xml.erb within layouts/twilio.layout (2.7ms)
|
1964
|
+
Completed 200 OK in 34ms (Views: 33.2ms | ActiveRecord: 0.0ms)
|
1965
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1966
|
+
Processing by TwilioController#test_start as XML
|
1967
|
+
Parameters: {"CallSid"=>"5f2203bf-78de-4913-b61e-cec819f662d2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1968
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1969
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1970
|
+
Processing by TwilioController#test_start as XML
|
1971
|
+
Parameters: {"CallSid"=>"9965e359-59f6-45cb-9145-69cd8bfcf57f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1972
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1973
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1974
|
+
Processing by TwilioController#test_start as XML
|
1975
|
+
Parameters: {"CallSid"=>"81a72a61-1988-4b00-87f2-b42cc5a0698f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1976
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1977
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1978
|
+
Processing by TwilioController#test_start as XML
|
1979
|
+
Parameters: {"CallSid"=>"7c2f3c89-5fad-41ad-9b29-9d0e167782b5", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1980
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1981
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1982
|
+
Processing by TwilioController#test_redirect as XML
|
1983
|
+
Parameters: {"CallSid"=>"75a2fe07-c73f-40f9-adf0-ebc5552658d1", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1984
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1985
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1986
|
+
Processing by TwilioController#test_redirect as XML
|
1987
|
+
Parameters: {"CallSid"=>"78186d5d-b9df-40ad-af8b-e9fe53c5c949", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1988
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
1989
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1990
|
+
Processing by TwilioController#test_redirect as XML
|
1991
|
+
Parameters: {"CallSid"=>"2e1b45fb-c8ff-4e9b-aeb8-4fd08c4f105b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1992
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
1993
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1994
|
+
Processing by TwilioController#test_redirect as XML
|
1995
|
+
Parameters: {"CallSid"=>"a72d29f7-477c-455a-b96f-139a601d6e01", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
1996
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1997
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
1998
|
+
Processing by TwilioController#test_start as XML
|
1999
|
+
Parameters: {"CallSid"=>"a72d29f7-477c-455a-b96f-139a601d6e01", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2000
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2001
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2002
|
+
Processing by TwilioController#test_redirect as XML
|
2003
|
+
Parameters: {"CallSid"=>"0b6a08bf-0180-486f-8475-5d33a3317a1f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2004
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2005
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2006
|
+
Processing by TwilioController#test_start as XML
|
2007
|
+
Parameters: {"CallSid"=>"0b6a08bf-0180-486f-8475-5d33a3317a1f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2008
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2009
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2010
|
+
Processing by TwilioController#test_say as XML
|
2011
|
+
Parameters: {"CallSid"=>"841722c1-1e57-4e6b-97e6-a1b71c9aa79e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2012
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2013
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2014
|
+
Processing by TwilioController#test_say as XML
|
2015
|
+
Parameters: {"CallSid"=>"01df7a85-f9ea-4d2a-bfeb-9289dd8855c9", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2016
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2017
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2018
|
+
Processing by TwilioController#test_say as XML
|
2019
|
+
Parameters: {"CallSid"=>"13372a09-dc6d-4d9d-bcb2-3374fff7ff02", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2020
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2021
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2022
|
+
Processing by TwilioController#test_say as XML
|
2023
|
+
Parameters: {"CallSid"=>"2d538e5a-eb44-4f9e-b7dd-5b8b69e8650d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2024
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2025
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2026
|
+
Processing by TwilioController#test_say as XML
|
2027
|
+
Parameters: {"CallSid"=>"070ac460-35db-4ec2-a119-61ac0c5fca2a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2028
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2029
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2030
|
+
Processing by TwilioController#test_say as XML
|
2031
|
+
Parameters: {"CallSid"=>"eb00584e-d94e-4d75-891a-3f673ee93fc4", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2032
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2033
|
+
Started POST "/twilio/test_play" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2034
|
+
Processing by TwilioController#test_play as XML
|
2035
|
+
Parameters: {"CallSid"=>"29ccf765-d5b2-4525-9003-7182831b4b19", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2036
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2037
|
+
Started POST "/twilio/test_play" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2038
|
+
Processing by TwilioController#test_play as XML
|
2039
|
+
Parameters: {"CallSid"=>"27469053-e956-4552-931e-3c91072d8616", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2040
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2041
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2042
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2043
|
+
Parameters: {"CallSid"=>"c0415784-3c7e-4ccd-8cfc-35ae67c28842", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2044
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2045
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2046
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2047
|
+
Parameters: {"CallSid"=>"3baba13a-d533-4ac4-b713-14766b9f0168", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2048
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2049
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2050
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2051
|
+
Parameters: {"CallSid"=>"7daa03c3-b703-4c8d-b1ad-c30103bd5074", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2052
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2053
|
+
Started POST "/twilio/test_dial_with_no_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2054
|
+
Processing by TwilioController#test_dial_with_no_action as XML
|
2055
|
+
Parameters: {"CallSid"=>"0b655074-dd88-4ea7-aeda-986da9874a64", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2056
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2057
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2058
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2059
|
+
Parameters: {"CallSid"=>"4a4d45fc-708d-4dc7-b849-a6a7f3f5aefa", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2060
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2061
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2062
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2063
|
+
Parameters: {"CallSid"=>"0117cec1-cff6-4df7-891d-29650a5b323b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2064
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2065
|
+
Started POST "/twilio/test_hangup" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2066
|
+
Processing by TwilioController#test_hangup as XML
|
2067
|
+
Parameters: {"CallSid"=>"ccc59334-eaa5-4e5b-a359-df50268c6530", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2068
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2069
|
+
Started POST "/twilio/test_hangup" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2070
|
+
Processing by TwilioController#test_hangup as XML
|
2071
|
+
Parameters: {"CallSid"=>"0bc7c76a-116d-4209-a09f-7a48fa5b59fc", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2072
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2073
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2074
|
+
Processing by TwilioController#test_start as XML
|
2075
|
+
Parameters: {"CallSid"=>"cce45f6e-be73-47ec-8782-110e0fcf0280", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2076
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2077
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2078
|
+
Processing by TwilioController#test_start as XML
|
2079
|
+
Parameters: {"CallSid"=>"96cc9dd9-46c7-4abe-bd2b-2f2c1f1ffdf1", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2080
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2081
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2082
|
+
Processing by TwilioController#test_start as XML
|
2083
|
+
Parameters: {"CallSid"=>"451e8020-887f-4ef9-aa6c-cc67f2afe4d1", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2084
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2085
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2086
|
+
Processing by TwilioController#test_start as XML
|
2087
|
+
Parameters: {"CallSid"=>"985258f8-a654-4383-aa87-6dc6cca5c5e7", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2088
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2089
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2090
|
+
Processing by TwilioController#test_start as XML
|
2091
|
+
Parameters: {"CallSid"=>"d79829ba-30a5-4d00-96c0-9915168d0752", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2092
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2093
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2094
|
+
Processing by TwilioController#test_start as XML
|
2095
|
+
Parameters: {"CallSid"=>"8e0221f6-d06d-4fb1-af2d-6824fbee899c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2096
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2097
|
+
Started POST "/twilio/test_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2098
|
+
Processing by TwilioController#test_action as XML
|
2099
|
+
Parameters: {"CallSid"=>"8e0221f6-d06d-4fb1-af2d-6824fbee899c", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2100
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
2101
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2102
|
+
Processing by TwilioController#test_start as XML
|
2103
|
+
Parameters: {"CallSid"=>"4ccfe825-b1a7-4363-9e55-2fb24f3f0c4c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2104
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2105
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2106
|
+
Processing by TwilioController#test_start as XML
|
2107
|
+
Parameters: {"CallSid"=>"0dec56ae-c628-4344-9ef9-ec94edf981a4", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2108
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2109
|
+
Started POST "/twilio/test_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2110
|
+
Processing by TwilioController#test_action as XML
|
2111
|
+
Parameters: {"CallSid"=>"0dec56ae-c628-4344-9ef9-ec94edf981a4", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2112
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2113
|
+
Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2114
|
+
Processing by TwilioController#test_gather_finish_on_asterisk as XML
|
2115
|
+
Parameters: {"CallSid"=>"9ec540e9-7c78-47d5-8735-df8d95bf7868", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2116
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2117
|
+
Started POST "/twilio/test_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2118
|
+
Processing by TwilioController#test_action as XML
|
2119
|
+
Parameters: {"CallSid"=>"9ec540e9-7c78-47d5-8735-df8d95bf7868", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2120
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2121
|
+
Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2122
|
+
Processing by TwilioController#test_gather_finish_on_asterisk as XML
|
2123
|
+
Parameters: {"CallSid"=>"e624fb00-06dd-433e-bbab-7895f2fc2a53", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2124
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2125
|
+
Started POST "/twilio/test_action" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2126
|
+
Processing by TwilioController#test_action as XML
|
2127
|
+
Parameters: {"CallSid"=>"e624fb00-06dd-433e-bbab-7895f2fc2a53", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2128
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2129
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2130
|
+
Processing by TwilioController#test_say as XML
|
2131
|
+
Parameters: {"CallSid"=>"0cc3e66e-c34b-4e81-b26f-bfb0e5e12290", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2132
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2133
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2134
|
+
Processing by TwilioController#test_say as XML
|
2135
|
+
Parameters: {"CallSid"=>"744a763c-8a2f-4a24-aa9d-b5f28df9341b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2136
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2137
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2138
|
+
Processing by TwilioController#test_say as XML
|
2139
|
+
Parameters: {"CallSid"=>"7f7a78c2-57a7-4f47-8494-30bf1e207624", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2140
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2141
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2142
|
+
Processing by TwilioController#test_say as XML
|
2143
|
+
Parameters: {"CallSid"=>"93047686-4188-4ddf-9d43-cbf4dae7d16a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2144
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2145
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2146
|
+
Processing by TwilioController#test_start as XML
|
2147
|
+
Parameters: {"CallSid"=>"63f194fa-0e89-4067-b3ce-0d9453f24040", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2148
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2149
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2150
|
+
Processing by TwilioController#test_start as XML
|
2151
|
+
Parameters: {"CallSid"=>"8859038c-0b72-4c95-8294-f843f0674fd3", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2152
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2153
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2154
|
+
Processing by TwilioController#test_start as XML
|
2155
|
+
Parameters: {"CallSid"=>"6761c69f-3f91-4f39-a948-a4aceccd31d0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2156
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2157
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2158
|
+
Processing by TwilioController#test_start as XML
|
2159
|
+
Parameters: {"CallSid"=>"883aa08c-0f9c-4785-89fc-b7c51eda382c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2160
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2161
|
+
Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2162
|
+
Processing by TwilioController#test_start as XML
|
2163
|
+
Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine"}
|
2164
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2165
|
+
Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2166
|
+
Processing by TwilioController#test_start as XML
|
2167
|
+
Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine"}
|
2168
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2169
|
+
Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine" for 127.0.0.1 at 2013-07-10 18:44:44 -0700
|
2170
|
+
Processing by TwilioController#test_start as XML
|
2171
|
+
Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine"}
|
2172
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2173
|
+
Connecting to database specified by database.yml
|
2174
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2175
|
+
Processing by TwilioController#test_start as XML
|
2176
|
+
Parameters: {"CallSid"=>"c1eb90c4-5b6d-43a9-8f04-6b918c7b1a01", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2177
|
+
Rendered twilio/test_start.xml.erb within layouts/twilio.layout (1.8ms)
|
2178
|
+
Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms)
|
2179
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2180
|
+
Processing by TwilioController#test_start as XML
|
2181
|
+
Parameters: {"CallSid"=>"b4060d9b-679c-4e4b-8eb3-5293fad410b6", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2182
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2183
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2184
|
+
Processing by TwilioController#test_start as XML
|
2185
|
+
Parameters: {"CallSid"=>"120d0d54-67ae-4680-ac37-5eade0d1d4de", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2186
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2187
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2188
|
+
Processing by TwilioController#test_start as XML
|
2189
|
+
Parameters: {"CallSid"=>"43887e54-9096-45bb-99e2-baba6c349472", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2190
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2191
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2192
|
+
Processing by TwilioController#test_start as XML
|
2193
|
+
Parameters: {"CallSid"=>"659ae7f6-2e13-4065-a834-6e9a3b57817c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2194
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2195
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2196
|
+
Processing by TwilioController#test_redirect as XML
|
2197
|
+
Parameters: {"CallSid"=>"a88e250b-1bc4-4717-8fc9-b5979b17f9ad", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2198
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2199
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2200
|
+
Processing by TwilioController#test_redirect as XML
|
2201
|
+
Parameters: {"CallSid"=>"acb1a6cc-4447-46d7-a6f5-02937ddb764f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2202
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2203
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2204
|
+
Processing by TwilioController#test_redirect as XML
|
2205
|
+
Parameters: {"CallSid"=>"57bc73a4-25c7-4f82-97d4-a97af6ca7b21", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2206
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2207
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2208
|
+
Processing by TwilioController#test_redirect as XML
|
2209
|
+
Parameters: {"CallSid"=>"b8b03749-ddb8-491e-89d8-306c580dca2a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2210
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2211
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2212
|
+
Processing by TwilioController#test_start as XML
|
2213
|
+
Parameters: {"CallSid"=>"b8b03749-ddb8-491e-89d8-306c580dca2a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2214
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2215
|
+
Started POST "/twilio/test_redirect" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2216
|
+
Processing by TwilioController#test_redirect as XML
|
2217
|
+
Parameters: {"CallSid"=>"ef113971-b777-4d06-b014-461b2a282bde", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2218
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2219
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2220
|
+
Processing by TwilioController#test_start as XML
|
2221
|
+
Parameters: {"CallSid"=>"ef113971-b777-4d06-b014-461b2a282bde", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2222
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2223
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2224
|
+
Processing by TwilioController#test_say as XML
|
2225
|
+
Parameters: {"CallSid"=>"86a6ae5f-abd5-40d3-811c-61f2f25d0262", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2226
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2227
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2228
|
+
Processing by TwilioController#test_say as XML
|
2229
|
+
Parameters: {"CallSid"=>"a35d4b8a-f773-4903-bc1a-0fa97536fe21", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2230
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2231
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2232
|
+
Processing by TwilioController#test_say as XML
|
2233
|
+
Parameters: {"CallSid"=>"d1606a69-8931-4361-a544-e2a61eca8c4b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2234
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2235
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2236
|
+
Processing by TwilioController#test_say as XML
|
2237
|
+
Parameters: {"CallSid"=>"32414276-edf4-482c-887d-a2e0eeb9db55", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2238
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2239
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2240
|
+
Processing by TwilioController#test_say as XML
|
2241
|
+
Parameters: {"CallSid"=>"0bb5bb16-49cc-4f35-8332-f9e408d27ed0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2242
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2243
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2244
|
+
Processing by TwilioController#test_say as XML
|
2245
|
+
Parameters: {"CallSid"=>"26280b51-5dce-4e37-a078-dea8b8ec5b91", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2246
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2247
|
+
Started POST "/twilio/test_play" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2248
|
+
Processing by TwilioController#test_play as XML
|
2249
|
+
Parameters: {"CallSid"=>"63f9c82d-fb34-49cc-92c0-d13c04d957be", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2250
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2251
|
+
Started POST "/twilio/test_play" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2252
|
+
Processing by TwilioController#test_play as XML
|
2253
|
+
Parameters: {"CallSid"=>"cf39b22a-cd46-4e13-adc2-77e9ac1c425e", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2254
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2255
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2256
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2257
|
+
Parameters: {"CallSid"=>"8772ed08-9f30-4fe8-86a9-db91fefbb28c", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2258
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2259
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2260
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2261
|
+
Parameters: {"CallSid"=>"7750eba4-7c28-48d2-909c-2471121f3cd4", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2262
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2263
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2264
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2265
|
+
Parameters: {"CallSid"=>"96bbc1b3-8d6f-4b84-9a51-b69e80fe3345", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2266
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2267
|
+
Started POST "/twilio/test_dial_with_no_action" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2268
|
+
Processing by TwilioController#test_dial_with_no_action as XML
|
2269
|
+
Parameters: {"CallSid"=>"bd041751-b373-432d-9a76-41b3279fd681", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2270
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2271
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2272
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2273
|
+
Parameters: {"CallSid"=>"83bd8aaa-49e3-4981-a968-3e21921f7099", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2274
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2275
|
+
Started POST "/twilio/test_dial_with_action" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2276
|
+
Processing by TwilioController#test_dial_with_action as XML
|
2277
|
+
Parameters: {"CallSid"=>"df4191a6-4c15-47cd-9644-98b26ea6b58b", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2278
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2279
|
+
Started POST "/twilio/test_hangup" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2280
|
+
Processing by TwilioController#test_hangup as XML
|
2281
|
+
Parameters: {"CallSid"=>"54c2fa29-4a79-424c-8be9-34806064a366", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2282
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2283
|
+
Started POST "/twilio/test_hangup" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2284
|
+
Processing by TwilioController#test_hangup as XML
|
2285
|
+
Parameters: {"CallSid"=>"2b6210b0-77e7-4a92-969c-0414cc5a88f5", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2286
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2287
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2288
|
+
Processing by TwilioController#test_start as XML
|
2289
|
+
Parameters: {"CallSid"=>"1cc565ad-e2c1-4c3c-b04a-481be238300a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2290
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2291
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2292
|
+
Processing by TwilioController#test_start as XML
|
2293
|
+
Parameters: {"CallSid"=>"5f5f3a26-7143-4fd0-9a9a-9707a1298c9a", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2294
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2295
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2296
|
+
Processing by TwilioController#test_start as XML
|
2297
|
+
Parameters: {"CallSid"=>"aeeaf002-720e-4cc2-baf7-6fd2d21b3c86", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2298
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2299
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:18 -0700
|
2300
|
+
Processing by TwilioController#test_start as XML
|
2301
|
+
Parameters: {"CallSid"=>"21e96488-ffd8-40c0-9b8c-600e4bf158dc", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2302
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2303
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2304
|
+
Processing by TwilioController#test_start as XML
|
2305
|
+
Parameters: {"CallSid"=>"8fcca020-7780-4726-9596-2bcc192f291d", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2306
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
2307
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2308
|
+
Processing by TwilioController#test_start as XML
|
2309
|
+
Parameters: {"CallSid"=>"998604f6-ff71-4f0f-af5d-3553e1f215be", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2310
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2311
|
+
Started POST "/twilio/test_action" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2312
|
+
Processing by TwilioController#test_action as XML
|
2313
|
+
Parameters: {"CallSid"=>"998604f6-ff71-4f0f-af5d-3553e1f215be", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2314
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2315
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2316
|
+
Processing by TwilioController#test_start as XML
|
2317
|
+
Parameters: {"CallSid"=>"a319f046-8dee-414b-aca9-68219ac37994", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2318
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2319
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2320
|
+
Processing by TwilioController#test_start as XML
|
2321
|
+
Parameters: {"CallSid"=>"c6f7c77f-c24b-456a-bf4a-e1efb75c0173", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2322
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2323
|
+
Started POST "/twilio/test_action" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2324
|
+
Processing by TwilioController#test_action as XML
|
2325
|
+
Parameters: {"CallSid"=>"c6f7c77f-c24b-456a-bf4a-e1efb75c0173", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2326
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2327
|
+
Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2328
|
+
Processing by TwilioController#test_gather_finish_on_asterisk as XML
|
2329
|
+
Parameters: {"CallSid"=>"c227b5ea-b7f1-403b-a2ef-eef540348594", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2330
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2331
|
+
Started POST "/twilio/test_action" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2332
|
+
Processing by TwilioController#test_action as XML
|
2333
|
+
Parameters: {"CallSid"=>"c227b5ea-b7f1-403b-a2ef-eef540348594", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2334
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2335
|
+
Started POST "/twilio/test_gather_finish_on_asterisk" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2336
|
+
Processing by TwilioController#test_gather_finish_on_asterisk as XML
|
2337
|
+
Parameters: {"CallSid"=>"f37b364a-e38b-461a-bff8-c7aca959b700", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2338
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2339
|
+
Started POST "/twilio/test_action" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2340
|
+
Processing by TwilioController#test_action as XML
|
2341
|
+
Parameters: {"CallSid"=>"f37b364a-e38b-461a-bff8-c7aca959b700", "From"=>"2065551212", "Digits"=>"98765", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2342
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2343
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2344
|
+
Processing by TwilioController#test_say as XML
|
2345
|
+
Parameters: {"CallSid"=>"f9ef8f3f-d39c-4ebe-a680-6ec9f7920bb0", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2346
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2347
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2348
|
+
Processing by TwilioController#test_say as XML
|
2349
|
+
Parameters: {"CallSid"=>"7293a435-5a7f-48c4-9da0-7ab677845d16", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2350
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2351
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2352
|
+
Processing by TwilioController#test_say as XML
|
2353
|
+
Parameters: {"CallSid"=>"e70789ba-98d2-448c-9379-6c3245a0cd75", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2354
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2355
|
+
Started POST "/twilio/test_say" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2356
|
+
Processing by TwilioController#test_say as XML
|
2357
|
+
Parameters: {"CallSid"=>"b8734c72-9b88-4672-b111-e70527d760f2", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2358
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2359
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2360
|
+
Processing by TwilioController#test_start as XML
|
2361
|
+
Parameters: {"CallSid"=>"ba89bbcd-11b2-45c9-ad0b-0dc0b7f7f8fc", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2362
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2363
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2364
|
+
Processing by TwilioController#test_start as XML
|
2365
|
+
Parameters: {"CallSid"=>"b1b44265-e4ea-4200-b237-f217a668b361", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2366
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2367
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2368
|
+
Processing by TwilioController#test_start as XML
|
2369
|
+
Parameters: {"CallSid"=>"325b5d3f-b8bd-42ce-8539-70a180460f98", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2370
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2371
|
+
Started POST "/twilio/test_start" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2372
|
+
Processing by TwilioController#test_start as XML
|
2373
|
+
Parameters: {"CallSid"=>"ae6f9b55-4290-46e6-89f5-def3d325d25f", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"human"}
|
2374
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2375
|
+
Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2376
|
+
Processing by TwilioController#test_start as XML
|
2377
|
+
Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine"}
|
2378
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2379
|
+
Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2380
|
+
Processing by TwilioController#test_start as XML
|
2381
|
+
Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine"}
|
2382
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2383
|
+
Started GET "/twilio/test_start?format=xml&CallSid=1234567&From=2065551212&Digits=&To=2065553434&AnsweredBy=machine" for 127.0.0.1 at 2013-07-10 18:45:19 -0700
|
2384
|
+
Processing by TwilioController#test_start as XML
|
2385
|
+
Parameters: {"CallSid"=>"1234567", "From"=>"2065551212", "Digits"=>"", "To"=>"2065553434", "AnsweredBy"=>"machine"}
|
2386
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: twilio-test-toolkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-07-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: capybara
|