| va...@yahoo.ca> |
", 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, 22 Feb, 04:55 |
| va...@yahoo.ca> |
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, 22 Feb, 04:55 |
| va...@yahoo.ca> |
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, 22 Feb, 04:55 |
| va...@yahoo.ca> |
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, 22 Feb, 04:55 |
| va...@yahoo.ca> |
pan 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, 22 Feb, 04:55 |
| va...@yahoo.ca> |
pan 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, 22 Feb, 04:55 |
| va...@yahoo.ca> |
pan 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, 22 Feb, 04:55 |
| va...@yahoo.ca> |
pan 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, 22 Feb, 04:55 |
| va...@yahoo.ca> |
pan 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, 22 Feb, 04:55 |
| <fgoldst...@ionary.com> |
> #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>
|
Thu, 24 Apr, 14:17 |
|
> 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>
|
Sat, 07 Apr, 02:32 |
| m |
6-04-2003:51:17UTC(rev10358)+++trunk/chandler/tools/QAUITestAppLib.py2006-04-2004:00:41UTC(rev10359)</span> |
Fri, 17 Sep, 18:43 |
| lt |
(On body Checking) || object body = %s ; expected body = %s" %(body, dict[field]))
else:
</span>
</pre>
</div>
</div>
</body>
</html>
|
Tue, 19 Apr, 06:07 |
| lt |
lsQAUITestAppLibpy"></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, 19 Apr, 06:07 |
| d...@osafoundation.org |
a> |
Sat, 01 Oct, 10:38 |
| d...@osafoundation.org |
9IDà«9(¢9OBð«9(¢9THn bo</span> |
Sat, 01 Oct, 10:38 |
| d...@osafoundation.org |
9IDà«9(¢9OBð«9(¢9THn bo</span> |
Sat, 01 Oct, 10:38 |
| d...@osafoundation.org |
9IDà«9(¢9OBð«9(¢9THn bo</span> |
Sat, 01 Oct, 10:38 |
| d...@osafoundation.org |
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, 01 Oct, 10:38 |
|
</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, 18 Sep, 17:42 |
| va...@osafoundation.org> |
¸‹BT
8Ý9¸‹B
@@hÝ9¸‹BATSÞ9¸‹BPMIˆÞ9¸‹BUAQÐÞ9¸‹BOPMIß9¸‹BDIA<spanclass="rem"> |
Sat, 13 Mar, 15:31 |
| ph...@yahoo.com> |
¸‹BT
8Ý9¸‹B
@@hÝ9¸‹BATSÞ9¸‹BPMIˆÞ9¸‹BUAQÐÞ9¸‹BOPMIß9¸‹BDIA<spanclass="rem"> |
Tue, 25 Dec, 10:02 |
| m.@osafoundation.org> |
'),"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>
|
Mon, 03 May, 09:42 |
| m.@osafoundation.org> |
><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>
|
Mon, 03 May, 09:42 |
| m.@osafoundation.org> |
><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>
|
Mon, 03 May, 09:42 |
| m.@osafoundation.org> |
><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>
|
Mon, 03 May, 09:42 |
| m.@kahuna.osafoundation.org> |
><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>
|
Mon, 03 May, 09:42 |
| m.@kahuna.osafoundation.org> |
><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>
|
Mon, 03 May, 09:42 |
|
undation.org> |
Thu, 29 Jul, 13:31 |
| w.@osafoundation.org> |
iddle (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, 24 May, 21:02 |
| is |
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, 22 Jun, 20:09 |
| nen |
ing 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>
|
Wed, 11 Jan, 14:11 |
| <...@telecommunity.com> |
id="trunkchandlertoolsQATestScriptsPerformanceendpy"> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
id="trunkchandlertoolsQATestScriptsPerformanceendpy"> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
id="trunkchandlertoolsQATestScriptsPerformanceendpy"> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
tem1.body)°ª9(¢9DOBÀª9(¢9APSت9(¢9ONFIÈ«9(¢9RPЫ9(¢9IDà«9(¢9OBð«9(¢9THn bo</span> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
tem1.body)°ª9(¢9DOBÀª9(¢9APSت9(¢9ONFIÈ«9(¢9RPЫ9(¢9IDà«9(¢9OBð«9(¢9THn bo</span> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
tem1.body)°ª9(¢9DOBÀª9(¢9APSت9(¢9ONFIÈ«9(¢9RPЫ9(¢9IDà«9(¢9OBð«9(¢9THn bo</span> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
tem1.body)°ª9(¢9DOBÀª9(¢9APSت9(¢9ONFIÈ«9(¢9RPЫ9(¢9IDà«9(¢9OBð«9(¢9THn bo</span> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
tem1.body)°ª9(¢9DOBÀª9(¢9APSت9(¢9ONFIÈ«9(¢9RPЫ9(¢9IDà«9(¢9OBð«9(¢9THn bo</span> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
tem1.body)°ª9(¢9DOBÀª9(¢9APSت9(¢9ONFIÈ«9(¢9RPЫ9(¢9IDà«9(¢9OBð«9(¢9THn bo</span> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
tem1.body)°ª9(¢9DOBÀª9(¢9APSت9(¢9ONFIÈ«9(¢9RPЫ9(¢9IDà«9(¢9OBð«9(¢9THn bo</span> |
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
pan><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>
|
Wed, 07 Jan, 05:01 |
| <...@telecommunity.com> |
pan><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>
|
Wed, 07 Jan, 05:01 |
| lco...@vh-s.de> |
body":#bodychecking</span> |
Fri, 26 Jul, 11:50 |
| g.b...@opengroup.org |
11 10359)</h4> |
Wed, 24 Aug, 19:47 |
| g.b...@opengroup.org |
RPЫ9(¢9IDà«9(¢9OBð«9(¢9THn bo</span> |
Wed, 24 Aug, 19:47 |
| ydd...@myddrin.com> |
ss="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>
|
Thu, 15 Oct, 15:09 |