|
andlertoolsQATestScriptsFunctionalTestImportOverwritepy"></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="Original Event", startDate="01/01/2001", startTime="12:00 AM", body="This is the original event")
logger.ReportPass("Create Event to Export")
</span><span class="rem">-
-
</span><span class="add">+
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sat, 07 Apr, 02:32 |
|
an&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
|
Sat, 07 Apr, 02:32 |
|
nding=False,
+ )
&lt;/ins&gt;&lt;span class="cx"&gt;
&lt;/spanspan class="cx"&gt;
&lt;/span&gt;&lt;span class="cx"&gt; class Viewer(trellis.Component):
&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
|
Tue, 20 Dec, 12:56 |
| <...@osafoundation.org> |
cking</span> |
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
ss="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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
ted 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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
lure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
lure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
logger.ReportPass("Event overwriten")
else:
logger.ReportFailure('Event not overwriten')
</ginalvalues#findimportedeventbyUUIDfound=App_ns.view.findUUID(event_UUID)</span> |
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
t;body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
portPass("Event overwriten")
else:
logger.ReportFailure('Event not overwriten')
</ginalvalues#findimportedeventbyUUIDfound=App_ns.view.findUUID(event_UUID)</span> |
Tue, 12 May, 17:36 |
| <...@osafoundation.org> |
portPass("Event overwriten")
else:
logger.ReportFailure('Event not overwriten')
</ginalvalues#findimportedeventbyUUIDfound=App_ns.view.findUUID(event_UUID)</span> |
Tue, 12 May, 17:36 |
| <hank...@gmail.com> |
lf.logger:self.logger.ReportPass("(OnlocationChecking)")eliffield=="body":#bodychecking</span> |
Mon, 16 Dec, 16:55 |
| <hank...@gmail.com> |
uot;Create Event to Export")
</span><span class="rem">-
-
</span><span class="add">+
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</span><span class="rem">-
</",mimetype="text/plain")</span> |
Mon, 16 Dec, 16:55 |
| <hank...@gmail.com> |
Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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 (1 => 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Mon, 16 Dec, 16:55 |
| <hank...@gmail.com> |
Name == 'Original Event':
</span><span class="cx"> logger.ReportPass("Event overwriten")
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 03ss="cx"> # Start Chandler 3 times with: time chandler -f end.py
# Pick the run whose time was in the middle (the "real" 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 (1 => 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><lass="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 == '
<dolsQAUITestAppLibpy"></a>
<div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (1 => 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Mon, 16 Dec, 16:55 |
| <harts...@osafoundation.org> |
e:ifself.logger:self.logger.ReportPass("(OnlocationChecking)")eliffield=="body":#bodychecking</span> |
Sun, 12 Apr, 21:12 |
| <...@telecommunity.com> |
F ÁGT
¨ĐF ÁGAPSŔĐF ÁG
@@ŕĐF ÁGAPSřĐF ÁGIRW ŇF ÁGAPS8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
F ÁGT
¨ĐF ÁGAPSŔĐF ÁG
@@ŕĐF ÁGAPSřĐF ÁGIRW ŇF ÁGAPS8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
F ÁGT
¨ĐF ÁGAPSŔĐF ÁG
@@ŕĐF ÁGAPSřĐF ÁGIRW ŇF ÁGAPS8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
F ÁGT
¨ĐF ÁGAPSŔĐF ÁG
@@ŕĐF ÁGAPSřĐF ÁGIRW ŇF ÁGAPS8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Wed, 07 Jan, 05:01 |
| <vinubal...@gmail.com> |
safoundation.org> |
Thu, 17 May, 22:01 |
| Parlante |
on.org> |
Sat, 09 Apr, 03:30 |
| Parlante |
4 |
Sat, 09 Apr, 03:30 |
| Parlante |
8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Sat, 09 Apr, 03:30 |
| Parlante |
8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Sat, 09 Apr, 03:30 |
| Parlante |
8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Sat, 09 Apr, 03:30 |
| b...@code-bear.com |
S8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Sat, 13 Sep, 09:29 |
| b.@osafoundation.org |
APS8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Thu, 25 Apr, 03:33 |
| b.@osafoundation.org |
APS8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Thu, 25 Apr, 03:33 |
| b.@osafoundation.org |
APS8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Thu, 25 Apr, 03:33 |
| b.@osafoundation.org |
APS8ŇF ÁG
PŇF ÁGAPShŇF ÁGSŇF ÁGPXEPÓF ÁG
@@ÓF ÁGAHCpÔF ÁGS
ŔÔF ÁGPMI0ÖF ÁGEHCčÖF ÁGFFI
p×F ÁGFFIđ×F ÁGGGOLŘF ÁGDIAđŘF ÁGIDOMpĎG ÁGT
PĐG ÁG
@@ĐG ÁGATS(ŃG ÁGPMIxŃG ÁGPS ŃG ÁGUAQčŃG ÁGOPMI ŇG ÁGDIAxŇG ÁGIDOMřŇG ÁGT
¸ÓG ÁG
@@đÓG ÁGESLEČÔG ÁGDOB
(ŐG ÁGDOBŐG ÁGONFIÖG ÁGOBÖG ÁGTHčžF |
Thu, 25 Apr, 03:33 |
| e |
bot)"
a xz@@w?˙˙˙˙˙˙˙˙ťR! |
Tue, 18 Feb, 17:56 |
| e |
runk/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="Original Event", startDate="01/01/2001", startTime="12:00 AM", body="This is the original event")
logger.ReportPass("Create Event to Export")
</span><span class="rem">-
-
</span><span class="add">+
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 18 Feb, 17:56 |
| e |
the original event
share = Sharing.OneTimeFileSystemShare(path, u'tempOverwriteTest.ics', ICalendar.ICalendarFormat, itsView=App_ns.itsView)
share.get()
wx.GetApp().Yield()
logger.ReportPass("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 21 Mar, 19:22 |
| e |
ot;Original Event", startDate="01/01/2001", startTime="12:00 AM", body="This is the original event")
logger.ReportPass("Create Event to Export")
</span><span class="rem">-
-
</span><span class="add">+
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 21 Mar, 19:22 |
| e |
been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 21 Mar, 19:22 |
| ic |
an 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| ic |
>- 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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| ic |
tPass("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| ic |
tPass("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| ic |
58 => 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 = "Chandler-FeedsPlugin",
</span><span class="rem">- version = "0.1",
</span><span class="add">+ version = "0.2",
</span><span class="cx"> description = "Simple RSS/Atom feed support for Chandler",
author = "OSAF",
test_suite = "feeds.tests",
</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="Original Event", startDate="01/01/2001", startTime="12:00 AM", body="This is the original event")
logger.ReportPass("Create Event to Export")
</span><span class="rem">-
-
</span><span class="add">+
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| ic |
58 => 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 = "Chandler-FeedsPlugin",
</span><span class="rem">- version = "0.1",
</span><span class="add">+ version = "0.2",
</span><span class="cx"> description = "Simple RSS/Atom feed support for Chandler",
author = "OSAF",
test_suite = "feeds.tests",
</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="Original Event", startDate="01/01/2001", startTime="12:00 AM", body="This is the original event")
logger.ReportPass("Create Event to Export")
</span><span class="rem">-
-
</span><span class="add">+
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| ic |
lf.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div10.m<spanclass="rem"> |
Sun, 07 Jun, 03:49 |
| ic |
ied: trunk/chandler/tools/QAUITestAppLib.py (1 => 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| ic |
ied: trunk/chandler/tools/QAUITestAppLib.py (1 => 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| ic |
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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 07 Jun, 03:49 |
| is |
7 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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 22 Jun, 20:09 |
| is |
TestScripts/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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 22 Jun, 20:09 |
| is |
; %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 22 Jun, 20:09 |
| is |
TestScripts/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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 22 Jun, 20:09 |
| is |
ys.exit(0)</span> |
Sun, 22 Jun, 20:09 |
| is |
TestScripts/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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 22 Jun, 20:09 |
| is |
TestScripts/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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 22 Jun, 20:09 |
| is |
TestScripts/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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 22 Jun, 20:09 |
| is |
TestScripts/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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 22 Jun, 20:09 |
| isse |
share.get()
wx.GetApp().Yield()
logger.ReportPass("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 13 Nov, 20:15 |
| isse |
<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 = "Chandler-FeedsPlugin",
</span><span class="rem">- version = "0.1",
</span><span class="add">+ version = "0.2",
</span><span class="cx"> description = "Simple RSS/Atom feed support for Chandler",
author = "OSAF",
test_suite = "feeds.tests",
</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="Original Event", startDate="01/01/2001", startTime="12:00 AM", body="This is the original event")
logger.ReportPass("Create Event to Export")
</span><span class="rem">-
-
</span><span class="add">+
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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("Event overwriten")
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 "real" 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("(On location Checking)")
elif field == "body": # body checking
</span><span class="rem">- body = "%s" %self.item.bodyString
</span><span class="add">+ body = "%s" %self.item.body
</span><span class="cx"> if not dict[field] == body :
if self.logger: self.logger.ReportFailure("(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Sun, 13 Nov, 20:15 |
| isse |
<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 = "Chandler-FeedsPlugin",
</span><span class="rem">- version = "0.1",
</span><span class="add">+ version = "0.2",
</span><span class="cx"> description = "Simple RSS/Atom feed support for Chandler",
author = "OSAF",
test_suite = "feeds.tests",
</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="Original Event", startDate="01/01/2001", startTime="12:00 AM", body="This is the original event")
logger.ReportPass("Create Event to Export")
</span><span class="rem">-
-
</span><span class="add">+
</span><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")
filename = 'tempOverwriteTest.ics'
</span><span class="lines">@@ -44,18 +43,18 @@
</span><span class="cx"> #change the event after exporting
event.SetAttr(displayName="Changed Event", body="This event has been changed")
logger.ReportPass("modifing event")
</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("importing event")
</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 |