|
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 |
| <des...@gnu-designs.com> |
n/setup.py (10358 => 10359)</h4>
<pre class="diff">
<span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">
setup(
name = "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>
|
Thu, 29 Jan, 12:58 |
| <jonahb...@fastmail.us> |
ff">
<span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">
setup(
name = "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>
|
Wed, 12 May, 20:40 |
| <jonahb...@fastmail.us> |
ff">
<span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">
setup(
name = "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>
|
Wed, 12 May, 20:40 |
| <micha...@ind-info.com> |
ler-FeedsPlugin/feeds/channels.py(10358=> |
Sun, 17 Jun, 07:05 |
| <piero.gole...@tin.it> |
˜í98:°í9" |
Tue, 07 Jun, 06:30 |
| Sherwood |
an><span class="cx"> #export the event
path = os.path.join(os.getenv('CHANDLERHOME'),"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, 06 Apr, 22:26 |
| ch |
ass="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4>
<pre class="diff">
<span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -892,7 +892,7 @@
</span><span class="cx"> else:
if self.logger: self.logger.ReportPass("(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, 10 Dec, 01:06 |
| c...@snackdaddy.com> |
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, 23 Oct, 16:54 |
| ecke |
nt")
</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, 05 Jan, 14:30 |
| ecke |
nt")
</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, 05 Jan, 14:30 |
| ecke |
nt")
</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, 05 Jan, 14:30 |
| od |
f found.bodyString == 'This is the original event' and found.displayName == 'Original Event':
</span><span class="add">+ if found.body == 'This is the original event' and found.displayName == 'Original Event':
</span><span class="cx"> logger.ReportPass("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, 17 Aug, 17:33 |
| r.@gosympatico.ca> |
>
<span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">
setup(
name = "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>
|
Tue, 22 Feb, 04:55 |
| velu |
#bodychecking</span> |
Thu, 15 Sep, 15:11 |
| w.@osafoundation.org> |
nkchandlertoolsQAUITestAppLibpy"></a>
<div class="modfile"><h4>Modified: trunk/chandler/tools/QAUITestAppLib.py (10358 => 10359)</h4>
<pre class="diff">
<span class="info">--- trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/tools/QAUITestAppLib.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -892,7 +892,7 @@
</span><span class="cx"> else:
if self.logger: self.logger.ReportPass("(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 |
| y |
>
<span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">
setup(
name = "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>
|
Mon, 21 Aug, 11:42 |
| y |
>
<span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">
setup(
name = "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>
|
Mon, 21 Aug, 11:42 |
| y |
>
<span class="info">--- trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 03:51:17 UTC (rev 10358)
+++ trunk/chandler/projects/Chandler-FeedsPlugin/setup.py 2006-04-20 04:00:41 UTC (rev 10359)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">
setup(
name = "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>
|
Mon, 21 Aug, 11:42 |