模拟短信网关?
如何模拟短信网关?要测试通过 SMS 网关发送 SMS 消息的 Web 服务,模拟 SMS 网关会更便宜(而且更好)。我尝试寻找一些解决方案,但找不到任何模拟短信网关服务的项目。有什么指点吗?
How do you mock a SMS gateway? To test a web service that sends outs SMS message through a SMS gateway, it'd be cheaper (& better) to mock the SMS gateway. I tried looking for some solutions but I just couldn't find any projects that mocked the SMS gateway service. Any pointers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 SMS 网关来说,从头开始创建模拟对象一点也不复杂。像模拟任何其他网络服务一样模拟它。拥有一个具有相同 Web 方法签名的端点;让它不执行任何操作 - 或记录并返回适当的状态代码。
Creating a mock object from scratch shouldn't be complex at all for the SMS gateway. Mock it like you would mock any other web service. Have an endpoint that has an identical web method signature; have it do nothing - or log, and return appropriate status codes.