简体   繁体   English

在基于云存储的移动应用程序上,我应该特别测试什么?

[英]What should I specifically test at cloud storage based mobile applications?

I am developing a sensor based mobile application for iOS and Android. 我正在为iOS和Android开发基于传感器的移动应用程序。 The data produced by smart phone sensors will be stored in the cloud. 智能手机传感器产生的数据将存储在云中。 At this point, I am wondering that what I should test about the data transfer and storing. 在这一点上,我想知道我应该测试有关数据传输和存储的内容。 I mean that for example, I should test the scenario as if the connection corrupts while GPS data transfer not finished. 我的意思是,例如,我应该测试方案,好像在GPS数据传输未完成时连接损坏。 I am not looking for the techniques, or testing styles. 我不是在寻找技术或测试样式。 I am trying to find possible failure points or test scenarios. 我正在尝试查找可能的故障点或测试方案。 I hope that I could explain my point. 我希望我能解释我的观点。

Below are some of the things worth considering for your app: 以下是您的应用值得考虑的一些事项:

  • Incomplete transfers when connection corrupts (as u mentioned) 连接损坏时传输不完整(如您所述)
  • Cloud-server size..how much request can it handle at a single instance? 云服务器大小..单个实例可以处理多少个请求?
  • If u are considering cloud solutions, you should also consider the location of your users from where they will be accessing your app. 如果您正在考虑使用云解决方案,则还应该考虑用户访问应用程序的位置。 Users and the location of data center will also affect in the response time. 用户和数据中心的位置也会影响响应时间。
  • Format of the date to stored. 要存储的日期格式。 Considering a file size which is fast in i/o will also help optimize the speed of the app. 考虑在I / O中快速的文件大小也将有助于优化应用程序的速度。
  • Asynchronous/Synchronous data transfer 异步/同步数据传输
  • Security measures on the cloud..may be using services like VPC if you are considering AWS 如果您考虑使用AWS,则云上的安全措施..可能正在使用VPC等服务

These are some things worth considering. 这些是值得考虑的事情。 Thanks :) 谢谢 :)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 什么是性能和负载测试 AWS 云应用程序的最佳方法 - What is best way to performance and load test AWS cloud applications 我应该测试什么? PhpUnit - what should i test? PhpUnit 我应该在视图中测试什么? - What should I test in views? 我应该重新实现基于属性的测试中的逻辑吗? - Should I reimplement the logic in property based test? 我应该使用哪些移动浏览器测试我的移动网页? - What mobile browsers should I be testing my mobile web pages with? 你在UI测试自动化中有什么特别的自动化? - What are you specifically automating in UI test automation? Springboot RESTful API | 我应该测试什么 - Springboot RESTful API | what should i test Xamarin 测试云有什么用? - What is Xamarin Test Cloud for? 我应该如何测试“无服务器”(API网关/ Lambda / ECS)应用程序? - How should I test my “Serverless” (API Gateway/Lambda/ECS) applications? 在最后一次测试移动应用程序之前,我应该使用哪个服务器。 生产? 或分期? 或测试? - Which server should I use before the last test of mobile app. Production? or Staging? or Test?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM