All of lore.kernel.org
 help / color / mirror / Atom feed
* light test report for ofono v0.2
@ 2009-08-04  9:27 Fu, Elva
  2009-08-05 16:09 ` Gu, Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Fu, Elva @ 2009-08-04  9:27 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 3134 bytes --]

Test Environment
-------------------------------
general PC (pre-installed FC11)
	- ofono v0.2
	- phonesim package
mobile phone (use it as modem)
-------------------------------

Test Scope
-------------------------------
    - this round of testing is a light one. we mainly focus on checking basic functionality of ofono v0.2 (voice call, sms, phonebook etc.)
    - voice call, multiparty call, sms, phonebook and modem are tested in real network env. For others, we test them through simulator.
    - We also give a try on latest version to check whether the issues were fixed in trunk.
-------------------------------

Test Summary
-------------------------------
the test result is positive. most functionalities work well. we could send/receive sms, accept/reject/hold a voice call etc. Thanks Denis and all developers to make this happen!
Total 60 test cases were executed during this round of testing. Among them: 
Pass: 	56
Fail: 	4
-------------------------------

Issues
-------------------------------
most of them were fixed in trunk, thanks! :-)
1) can't read phonebook records.   (was fixed in trunk)
2) segment fault when sending sms to more than one recipients (was fixed in trunk)
3) segment fault when sending multipage sms (was fixed in trunk)
4) timeout when reading records at the first time
-------------------------------

Details
-------------------------------
features		checkpoints			test results		comments	
SMS             	Send/receive                        	pass
                 	Set service center address         pass
                 	More recipients                     	fail     			was fixed in trunk                
                 	More segment                     	fail       			was fixed in trunk              
Voice call      	Dial                                   	pass
                        Accept                        		pass
                        Reject                            	pass
                        Hold                                   	pass
                        Receive                           	pass
                        Release                           	pass
Multiparty call   	Create                            	pass
                        Hang up                           	pass
                        Private chat                         	pass
                        Hold                            		pass
Sim Phonebook	Read                                 	fail   			was fixed in trunk                    
SS     		CF       				pass                            
		CB    				pass                                         
		CW    				pass                                        
		CLIR/CLIP                                pass  
Setting		AOC                     		pass  
                  	CF/CB                                    	pass  
GSM string                                                  	pass  
Modem                          			pass
Networking                                    		pass
-------------------------------

Many thanks to Zhigang for his effort on execution!

Elva

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: light test report for ofono v0.2
  2009-08-04  9:27 light test report for ofono v0.2 Fu, Elva
@ 2009-08-05 16:09 ` Gu, Yang
  2009-08-06  6:47   ` Patch for Timeout Issue when Importing Phonebook Gu, Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Gu, Yang @ 2009-08-05 16:09 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 457 bytes --]

>4) timeout when reading records at the first time
Reading records from SIM card requires more time than default timeout of D-Bus, so you will get timeout error when you invoke the method via D-Bus for the first time. The result will be cached once oFono gets all the records, thus you may get the records very quickly for the second, third, .., time.
I will try to update the test case to retrieve the records in an asynchronous way.

Regards,
-Yang

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Patch for Timeout Issue when Importing Phonebook
  2009-08-05 16:09 ` Gu, Yang
@ 2009-08-06  6:47   ` Gu, Yang
  2009-08-06  6:59     ` Guo, Young
  2009-08-06 22:02     ` Denis Kenzior
  0 siblings, 2 replies; 5+ messages in thread
From: Gu, Yang @ 2009-08-06  6:47 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1080 bytes --]

It often needs a long time (more than default timeout of D-Bus) to retrieve all the entries from phonebook. This patch is to set the timeout to 100 seconds so that the operation has enough time to get the result. 

Regards,
-Yang


>-----Original Message-----
>From: ofono-bounces(a)ofono.org [mailto:ofono-bounces(a)ofono.org] On Behalf
>Of Gu, Yang
>Sent: Thursday, August 06, 2009 12:10 AM
>To: ofono(a)ofono.org
>Subject: RE: light test report for ofono v0.2
>
>>4) timeout when reading records at the first time
>Reading records from SIM card requires more time than default timeout of
>D-Bus, so you will get timeout error when you invoke the method via D-Bus
>for the first time. The result will be cached once oFono gets all the records,
>thus you may get the records very quickly for the second, third, .., time.
>I will try to update the test case to retrieve the records in an asynchronous
>way.
>
>Regards,
>-Yang
>_______________________________________________
>ofono mailing list
>ofono(a)ofono.org
>http://lists.ofono.org/listinfo/ofono

[-- Attachment #2: 0001-Enlarge-the-timeout-for-phonebook-import.patch --]
[-- Type: application/octet-stream, Size: 646 bytes --]

From f87ee7cc5a4eb2b81410b435daf008b34f69bff3 Mon Sep 17 00:00:00 2001
From: Yang Gu <yang.gu@intel.com>
Date: Thu, 6 Aug 2009 11:40:49 +0800
Subject: [PATCH] Enlarge the timeout for phonebook import

---
 test/test-phonebook |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/test/test-phonebook b/test/test-phonebook
index fb7a7d6..52004e8 100755
--- a/test/test-phonebook
+++ b/test/test-phonebook
@@ -18,4 +18,4 @@ if __name__ == "__main__":
 	phonebook = dbus.Interface(bus.get_object('org.ofono', modems[0]),
 				'org.ofono.Phonebook')
 
-	print phonebook.Import()
+	print phonebook.Import(timeout=100)
-- 
1.6.0.6


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* RE: Patch for Timeout Issue when Importing Phonebook
  2009-08-06  6:47   ` Patch for Timeout Issue when Importing Phonebook Gu, Yang
@ 2009-08-06  6:59     ` Guo, Young
  2009-08-06 22:02     ` Denis Kenzior
  1 sibling, 0 replies; 5+ messages in thread
From: Guo, Young @ 2009-08-06  6:59 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 1400 bytes --]

Is this conflict with our design philosophy which is "small and fast"? :)

-----Original Message-----
From: ofono-bounces(a)ofono.org [mailto:ofono-bounces(a)ofono.org] On Behalf Of Gu, Yang
Sent: Thursday, August 06, 2009 2:47 PM
To: ofono(a)ofono.org
Subject: Patch for Timeout Issue when Importing Phonebook

It often needs a long time (more than default timeout of D-Bus) to retrieve all the entries from phonebook. This patch is to set the timeout to 100 seconds so that the operation has enough time to get the result. 

Regards,
-Yang


>-----Original Message-----
>From: ofono-bounces(a)ofono.org [mailto:ofono-bounces(a)ofono.org] On Behalf
>Of Gu, Yang
>Sent: Thursday, August 06, 2009 12:10 AM
>To: ofono(a)ofono.org
>Subject: RE: light test report for ofono v0.2
>
>>4) timeout when reading records at the first time
>Reading records from SIM card requires more time than default timeout of
>D-Bus, so you will get timeout error when you invoke the method via D-Bus
>for the first time. The result will be cached once oFono gets all the records,
>thus you may get the records very quickly for the second, third, .., time.
>I will try to update the test case to retrieve the records in an asynchronous
>way.
>
>Regards,
>-Yang
>_______________________________________________
>ofono mailing list
>ofono(a)ofono.org
>http://lists.ofono.org/listinfo/ofono

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Patch for Timeout Issue when Importing Phonebook
  2009-08-06  6:47   ` Patch for Timeout Issue when Importing Phonebook Gu, Yang
  2009-08-06  6:59     ` Guo, Young
@ 2009-08-06 22:02     ` Denis Kenzior
  1 sibling, 0 replies; 5+ messages in thread
From: Denis Kenzior @ 2009-08-06 22:02 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 292 bytes --]

Hi Yang,

> It often needs a long time (more than default timeout of D-Bus) to retrieve
> all the entries from phonebook. This patch is to set the timeout to 100
> seconds so that the operation has enough time to get the result.

Patch has been applied.  Thanks.

Regards,
-Denis


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-08-06 22:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-04  9:27 light test report for ofono v0.2 Fu, Elva
2009-08-05 16:09 ` Gu, Yang
2009-08-06  6:47   ` Patch for Timeout Issue when Importing Phonebook Gu, Yang
2009-08-06  6:59     ` Guo, Young
2009-08-06 22:02     ` Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.