def test_conference(self): """ Test the "conference" Tropo class method. """ tropo = Tropo() tropo.conference(self.ID, playTones=True, terminator="#", name="Staff Meeting", mute=False) rendered = tropo.RenderJson() pretty_rendered = tropo.RenderJson(pretty=True) print("===============test_conference=================") print("render json: %s" % pretty_rendered) rendered_obj = jsonlib.loads(rendered) wanted_json = '{"tropo": [{"conference": {"playTones": true, "mute": false, "name": "Staff Meeting", "id": "foo", "terminator": "#"}}]}' print("wanted_json: %s" % wanted_json) wanted_obj = jsonlib.loads(wanted_json) # print "test_conference: %s" % tropo.RenderJson() self.assertEqual(rendered_obj, wanted_obj)
""" Unit tests. """ if (0): TO = "8005551212" ID = "foo" URL = "http://s3.amazonaws.com/xxx_s3_bucket/hello.wav" tropo = Tropo() tropo.ask("[5 digits]", say=Say("Please enter a 5 digit zip code").json) tropo.call(TO) tropo.conference(ID) tropo.hangup() tropo.message("Hello, World", TO) tropo.on(event="continue", next="http://example.com/weather.py", say="Please hold.") tropo.record(say="Please say something for posterity", url=URL, choices=Choices("", terminator="#").json) tropo.redirect(ID) tropo.reject(ID) tropo.startRecording(URL) tropo.stopRecording() tropo.transfer(TO)