Mailing list archives: March 2004

Site index · List index
Message listThread · Author · Date
trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -19,8 +19,7 @@ </span><span class="cx"> #write some stuff in the event to make it unique event.SetAttr(displayName=&quot;Original Event&quot;, startDate=&quot;01/01/2001&quot;, startTime=&quot;12:00 AM&quot;, body=&quot;This is the original event&quot;) logger.ReportPass(&quot;Create Event to Export&quot;) </span><span class="rem">- - </span><span class="add">+ </span><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Sat, 07 Apr, 02:32
<des...@gnu-designs.com> n/setup.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -2,7 +2,7 @@ </span><span class="cx"> setup( name = &quot;Chandler-FeedsPlugin&quot;, </span><span class="rem">- version = &quot;0.1&quot;, </span><span class="add">+ version = &quot;0.2&quot;, </span><span class="cx"> description = &quot;Simple RSS/Atom feed support for Chandler&quot;, author = &quot;OSAF&quot;, test_suite = &quot;feeds.tests&quot;, </span></pre></div> <a id="trunkchandlertoolsQATestScriptsFunctionalTestImportOverwritepy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -19,8 +19,7 @@ </span><span class="cx"> #write some stuff in the event to make it unique event.SetAttr(displayName=&quot;Original Event&quot;, startDate=&quot;01/01/2001&quot;, startTime=&quot;12:00 AM&quot;, body=&quot;This is the original event&quot;) logger.ReportPass(&quot;Create Event to Export&quot;) </span><span class="rem">- - </span><span class="add">+ </span><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Thu, 29 Jan, 12:58
<jonahb...@fastmail.us> ff"> <span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -2,7 +2,7 @@ </span><span class="cx"> setup( name = &quot;Chandler-FeedsPlugin&quot;, </span><span class="rem">- version = &quot;0.1&quot;, </span><span class="add">+ version = &quot;0.2&quot;, </span><span class="cx"> description = &quot;Simple RSS/Atom feed support for Chandler&quot;, author = &quot;OSAF&quot;, test_suite = &quot;feeds.tests&quot;, </span></pre></div> <a id="trunkchandlertoolsQATestScriptsFunctionalTestImportOverwritepy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -19,8 +19,7 @@ </span><span class="cx"> #write some stuff in the event to make it unique event.SetAttr(displayName=&quot;Original Event&quot;, startDate=&quot;01/01/2001&quot;, startTime=&quot;12:00 AM&quot;, body=&quot;This is the original event&quot;) logger.ReportPass(&quot;Create Event to Export&quot;) </span><span class="rem">- - </span><span class="add">+ </span><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Wed, 12 May, 20:40
<jonahb...@fastmail.us> ff"> <span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -2,7 +2,7 @@ </span><span class="cx"> setup( name = &quot;Chandler-FeedsPlugin&quot;, </span><span class="rem">- version = &quot;0.1&quot;, </span><span class="add">+ version = &quot;0.2&quot;, </span><span class="cx"> description = &quot;Simple RSS/Atom feed support for Chandler&quot;, author = &quot;OSAF&quot;, test_suite = &quot;feeds.tests&quot;, </span></pre></div> <a id="trunkchandlertoolsQATestScriptsFunctionalTestImportOverwritepy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -19,8 +19,7 @@ </span><span class="cx"> #write some stuff in the event to make it unique event.SetAttr(displayName=&quot;Original Event&quot;, startDate=&quot;01/01/2001&quot;, startTime=&quot;12:00 AM&quot;, body=&quot;This is the original event&quot;) logger.ReportPass(&quot;Create Event to Export&quot;) </span><span class="rem">- - </span><span class="add">+ </span><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Wed, 12 May, 20:40
<micha...@ind-info.com> ler-FeedsPlugin/feeds/channels.py(10358=> Sun, 17 Jun, 07:05
<piero.gole...@tin.it> ˜í98:°í9" Tue, 07 Jun, 06:30
Sherwood an><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Mon, 06 Apr, 22:26
ch ass="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Sun, 10 Dec, 01:06
c...@snackdaddy.com> if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Sat, 23 Oct, 16:54
ecke nt&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Tue, 05 Jan, 14:30
ecke nt&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Tue, 05 Jan, 14:30
ecke nt&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Tue, 05 Jan, 14:30
od f found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Sat, 17 Aug, 17:33
r.@gosympatico.ca> > <span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -2,7 +2,7 @@ </span><span class="cx"> setup( name = &quot;Chandler-FeedsPlugin&quot;, </span><span class="rem">- version = &quot;0.1&quot;, </span><span class="add">+ version = &quot;0.2&quot;, </span><span class="cx"> description = &quot;Simple RSS/Atom feed support for Chandler&quot;, author = &quot;OSAF&quot;, test_suite = &quot;feeds.tests&quot;, </span></pre></div> <a id="trunkchandlertoolsQATestScriptsFunctionalTestImportOverwritepy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -19,8 +19,7 @@ </span><span class="cx"> #write some stuff in the event to make it unique event.SetAttr(displayName=&quot;Original Event&quot;, startDate=&quot;01/01/2001&quot;, startTime=&quot;12:00 AM&quot;, body=&quot;This is the original event&quot;) logger.ReportPass(&quot;Create Event to Export&quot;) </span><span class="rem">- - </span><span class="add">+ </span><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Tue, 22 Feb, 04:55
velu #bodychecking</span> Thu, 15 Sep, 15:11
w.@osafoundation.org> nkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Sat, 24 May, 21:02
y > <span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -2,7 +2,7 @@ </span><span class="cx"> setup( name = &quot;Chandler-FeedsPlugin&quot;, </span><span class="rem">- version = &quot;0.1&quot;, </span><span class="add">+ version = &quot;0.2&quot;, </span><span class="cx"> description = &quot;Simple RSS/Atom feed support for Chandler&quot;, author = &quot;OSAF&quot;, test_suite = &quot;feeds.tests&quot;, </span></pre></div> <a id="trunkchandlertoolsQATestScriptsFunctionalTestImportOverwritepy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -19,8 +19,7 @@ </span><span class="cx"> #write some stuff in the event to make it unique event.SetAttr(displayName=&quot;Original Event&quot;, startDate=&quot;01/01/2001&quot;, startTime=&quot;12:00 AM&quot;, body=&quot;This is the original event&quot;) logger.ReportPass(&quot;Create Event to Export&quot;) </span><span class="rem">- - </span><span class="add">+ </span><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Mon, 21 Aug, 11:42
y > <span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -2,7 +2,7 @@ </span><span class="cx"> setup( name = &quot;Chandler-FeedsPlugin&quot;, </span><span class="rem">- version = &quot;0.1&quot;, </span><span class="add">+ version = &quot;0.2&quot;, </span><span class="cx"> description = &quot;Simple RSS/Atom feed support for Chandler&quot;, author = &quot;OSAF&quot;, test_suite = &quot;feeds.tests&quot;, </span></pre></div> <a id="trunkchandlertoolsQATestScriptsFunctionalTestImportOverwritepy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -19,8 +19,7 @@ </span><span class="cx"> #write some stuff in the event to make it unique event.SetAttr(displayName=&quot;Original Event&quot;, startDate=&quot;01/01/2001&quot;, startTime=&quot;12:00 AM&quot;, body=&quot;This is the original event&quot;) logger.ReportPass(&quot;Create Event to Export&quot;) </span><span class="rem">- - </span><span class="add">+ </span><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Mon, 21 Aug, 11:42
y > <span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -2,7 +2,7 @@ </span><span class="cx"> setup( name = &quot;Chandler-FeedsPlugin&quot;, </span><span class="rem">- version = &quot;0.1&quot;, </span><span class="add">+ version = &quot;0.2&quot;, </span><span class="cx"> description = &quot;Simple RSS/Atom feed support for Chandler&quot;, author = &quot;OSAF&quot;, test_suite = &quot;feeds.tests&quot;, </span></pre></div> <a id="trunkchandlertoolsQATestScriptsFunctionalTestImportOverwritepy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Functional/TestImportOverwrite.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -19,8 +19,7 @@ </span><span class="cx"> #write some stuff in the event to make it unique event.SetAttr(displayName=&quot;Original Event&quot;, startDate=&quot;01/01/2001&quot;, startTime=&quot;12:00 AM&quot;, body=&quot;This is the original event&quot;) logger.ReportPass(&quot;Create Event to Export&quot;) </span><span class="rem">- - </span><span class="add">+ </span><span class="cx"> #export the event path = os.path.join(os.getenv('CHANDLERHOME'),&quot;tools/QATestScripts/DataFiles&quot;) filename = 'tempOverwriteTest.ics' </span><span class="lines">@@ -44,18 +43,18 @@ </span><span class="cx"> #change the event after exporting event.SetAttr(displayName=&quot;Changed Event&quot;, body=&quot;This event has been changed&quot;) logger.ReportPass(&quot;modifing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #import the original event share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView) share.get() wx.GetApp().Yield() logger.ReportPass(&quot;importing event&quot;) </span><span class="rem">- </span><span class="add">+ </span><span class="cx"> #check if changed attributes have reverted to original values #find imported event by UUID found = App_ns.view.findUUID(event_UUID) </span><span class="rem">- if found.bodyString == 'This is the original event' and found.displayName == 'Original Event': </span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event': </span><span class="cx"> logger.ReportPass(&quot;Event overwriten&quot;) else: logger.ReportFailure('Event not overwriten') </span></pre></div> <a id="trunkchandlertoolsQATestScriptsPerformanceendpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QATestScripts/Performance/end.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QATestScripts/Performance/end.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -3,6 +3,9 @@ </span><span class="cx"> # Start Chandler 3 times with: time chandler -f end.py # Pick the run whose time was in the middle (the &quot;real&quot; time row) </span><span class="add">+import tools.QAUITestAppLib as QAUITestAppLib </span><span class="cx"> </span><span class="add">+QAUITestAppLib.App_ns.root.Quit() + </span><span class="cx"> import sys; sys.exit(0) </span></pre></div> <a id="trunkchandlertoolsQAUITestAppLibpy"></a> <div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4> <pre class="diff"> <span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358) +++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359) </span><span class="lines">@@ -892,7 +892,7 @@ </span><span class="cx"> else: if self.logger: self.logger.ReportPass(&quot;(On location Checking)&quot;) elif field == &quot;body&quot;: # body checking </span><span class="rem">- body = &quot;%s&quot; %self.item.bodyString </span><span class="add">+ body = &quot;%s&quot; %self.item.body </span><span class="cx"> if not dict[field] == body : if self.logger: self.logger.ReportFailure(&quot;(On body Checking) || object body = %s ; expected body = %s&quot; %(body, dict[field])) else: </span> </pre> </div> </div> </body> </html> Mon, 21 Aug, 11:42
Message listThread · Author · Date
Box list
Jan 200827
Dec 2007224
Nov 2007217
Oct 2007105
Sep 200793
Aug 200727
Jul 2007105
Jun 2007108
May 2007292
Apr 2007276
Mar 2007275
Feb 2007303
Jan 2007183
Dec 2006232
Nov 2006183
Oct 200697
Sep 2006163
Aug 2006162
Jul 2006265
Jun 2006136
May 2006105
Apr 2006208
Mar 2006229
Feb 2006230
Jan 2006260
Dec 2005128
Nov 2005246
Oct 2005123
Sep 200572
Aug 200524
Jul 200517
Jun 20054
May 200520
Apr 20059
Mar 200519
Feb 200514
Jan 200548
Dec 200448
Nov 200410
Oct 20043
Aug 200411
Jul 20045
Jun 200412
May 20041
Apr 200421
Mar 200419
Feb 20047
Jan 200463
Dec 200344
Nov 200335
Oct 200343
Sep 200338
Aug 200354
Jul 200314
Jun 200360
May 2003125
Apr 2003117
Mar 2003166
Feb 2003220
Jan 2003408
Dec 2002297
Nov 2002728
Oct 2002479