[Zope-dev] Zope Tests: 5 OK

2007-12-24 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list.
Period Sun Dec 23 12:00:00 2007 UTC to Mon Dec 24 12:00:00 2007 UTC.
There were 5 messages: 5 from Zope Unit Tests.


Tests passed OK
---

Subject: OK : Zope-2.7 Python-2.3.6 : Linux
From: Zope Unit Tests
Date: Sun Dec 23 20:54:32 EST 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-December/008841.html

Subject: OK : Zope-2.8 Python-2.3.6 : Linux
From: Zope Unit Tests
Date: Sun Dec 23 20:56:02 EST 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-December/008842.html

Subject: OK : Zope-2.9 Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Sun Dec 23 20:57:33 EST 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-December/008843.html

Subject: OK : Zope-2.10 Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Sun Dec 23 20:59:03 EST 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-December/008844.html

Subject: OK : Zope-trunk Python-2.4.4 : Linux
From: Zope Unit Tests
Date: Sun Dec 23 21:00:33 EST 2007
URL: http://mail.zope.org/pipermail/zope-tests/2007-December/008845.html

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Re: [Zope 2.11] KGS incomplete (Was: Stepping forward and going beta)

2007-12-24 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Andreas Jung wrote:
 I wrote a small script to match the KGS against the current Zope/HEAD 
 externals. The KGS is missing several zope.app modules that are
 used within Zope 2. What to do with them?
 
 WARN: KGS incomplete - BTrees not found
 WARN: KGS incomplete - ThreadedAsync not found
 WARN: KGS incomplete - ZEO not found
 WARN: KGS incomplete - ZODB not found
 WARN: KGS incomplete - ZopeUndo not found
 WARN: KGS incomplete - persistent not found

Those packages all ship with ZODB.  The 3.8 0c1 tag is current as of a
week ago.  I'm assuming the KGS lists the ZODB egg. ;)

 WARN: KGS incomplete - transaction not found

That package will move out into its own tree after ZODB 3.8.x.  Until
then, it should be found under there.

 WARN: KGS incomplete - zope.app.content_types not found
 WARN: KGS incomplete - zope.app.event not found
 WARN: KGS incomplete - zope.app.filerepresentation not found
 WARN: KGS incomplete - zope.app.location not found
 WARN: KGS incomplete - zope.app.mail not found
 WARN: KGS incomplete - zope.app.rdb not found
 WARN: KGS incomplete - zope.app.servicenames not found
 WARN: KGS incomplete - zope.app.site not found
 WARN: KGS incomplete - zope.app.size not found
 WARN: KGS incomplete - zope.app.tests not found

Mostly fossils, I think:

$ pwd
/home/tseaver/projects/Zope-CVS/Zope-trunk/lib/python
$ for pname in \
content_types \
event \
filerepresentation \
location \
mail \
rdb \
servicenames \
site \
size \
tests; do
   echo $pname
   find . -name *.py -o -name *.zcml \
   | xargs grep zope\.app\.$pname
done
content_types
event
./zope/component/interfaces.py:__module__ = 'zope.app.event.objectevent'
./zope/app/file/browser/file.py:
zope.app.event.objectevent.ObjectModifiedEvent object at ...
./zope/lifecycleevent/__init__.py:__module__ =
'zope.app.event.objectevent'
./zope/lifecycleevent/__init__.py:__module__ =
'zope.app.event.objectevent'
./zope/lifecycleevent/__init__.py:__module__ =
'zope.app.event.objectevent'
filerepresentation
location
mail
rdb
servicenames
site
./zope/app/site/tests/test_deprecation.py: import
zope.app.site.tests.placefulsetup
./zope/app/site/tests/test_deprecation.py: placefulsetup =
zope.app.site.tests.placefulsetup
./zope/app/site/tests/test_deprecation.py:
'zope.app.site.tests.placefulsetup'
./zope/app/site/tests/__init__.py:Import of PlacefulSetup from
zope.app.site.testing is deprecated 
size
tests

There is one (awful) doctest file
(zope/app/authentication/browser/principalfolder.txt) which mentions one
of those names, but the test is so foul it needs repairing anyway.



Tres.
- --
===
Tres Seaver  +1 540-429-0999  [EMAIL PROTECTED]
Palladion Software   Excellence by Designhttp://palladion.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHb8Vd+gerLs4ltQ4RAqn9AJwKY7tNh7+hjcHY7dO+3HfPz5dGSACfQ82V
XynAC2Ap33BXm+cY12o+uAU=
=tRVz
-END PGP SIGNATURE-
___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Re: [Zope 2.11] KGS incomplete (Was: Stepping forward and going beta)

2007-12-24 Thread Andreas Jung



--On 24. Dezember 2007 09:42:37 -0500 Tres Seaver [EMAIL PROTECTED] 
wrote:



-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Andreas Jung wrote:

I wrote a small script to match the KGS against the current Zope/HEAD
externals. The KGS is missing several zope.app modules that are
used within Zope 2. What to do with them?

WARN: KGS incomplete - BTrees not found
WARN: KGS incomplete - ThreadedAsync not found
WARN: KGS incomplete - ZEO not found
WARN: KGS incomplete - ZODB not found
WARN: KGS incomplete - ZopeUndo not found
WARN: KGS incomplete - persistent not found


Those packages all ship with ZODB.  The 3.8 0c1 tag is current as of a
week ago.  I'm assuming the KGS lists the ZODB egg. ;)



Jup. No problem with them.




WARN: KGS incomplete - transaction not found


That package will move out into its own tree after ZODB 3.8.x.  Until
then, it should be found under there.


WARN: KGS incomplete - zope.app.content_types not found
WARN: KGS incomplete - zope.app.event not found
WARN: KGS incomplete - zope.app.filerepresentation not found
WARN: KGS incomplete - zope.app.location not found
WARN: KGS incomplete - zope.app.mail not found
WARN: KGS incomplete - zope.app.rdb not found
WARN: KGS incomplete - zope.app.servicenames not found
WARN: KGS incomplete - zope.app.site not found
WARN: KGS incomplete - zope.app.size not found
WARN: KGS incomplete - zope.app.tests not found


I kicked them.

I created a test branch and adjusted the externals so far.

zope.thread seems to be a broken (there is no _zope_thread.c
file)...however had no time for further investigations.

And the testrunner produces 9 errors...anyone with a fast idea about
the reasons for the failures (before doing further investigations)?

/opt/python-2.4.4/bin/python 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/test.py -v

Running tests at level 1
Running unit tests:
 Running:
..
rror in test testSetupConfiguredLoggers 
(Zope2.Startup.tests.testStarter.ZopeStarterTestCase)

Traceback (most recent call last):
 File /opt/python-2.4.4/lib/python2.4/unittest.py, line 270, in run
   self.tearDown()
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/Zope2/Startup/tests/testStarter.py, 
line 69, in tearDown

   test_logger.LoggingTestBase.tearDown(self)
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/ZConfig/components/logger/tests/test_logger.py, 
line 72, in tearDown

   assert loghandler._reopenable_handlers == []
AssertionError

.

Error in test testSetupLocale 
(Zope2.Startup.tests.testStarter.ZopeStarterTestCase)

Traceback (most recent call last):
 File /opt/python-2.4.4/lib/python2.4/unittest.py, line 270, in run
   self.tearDown()
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/Zope2/Startup/tests/testStarter.py, 
line 69, in tearDown

   test_logger.LoggingTestBase.tearDown(self)
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/ZConfig/components/logger/tests/test_logger.py, 
line 72, in tearDown

   assert loghandler._reopenable_handlers == []
AssertionError

.

Error in test testSetupServers 
(Zope2.Startup.tests.testStarter.ZopeStarterTestCase)

Traceback (most recent call last):
 File /opt/python-2.4.4/lib/python2.4/unittest.py, line 270, in run
   self.tearDown()
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/Zope2/Startup/tests/testStarter.py, 
line 69, in tearDown

   test_logger.LoggingTestBase.tearDown(self)
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/ZConfig/components/logger/tests/test_logger.py, 
line 72, in tearDown

   assert loghandler._reopenable_handlers == []
AssertionError

.

Error in test testSetupStartupHandler 
(Zope2.Startup.tests.testStarter.ZopeStarterTestCase)

Traceback (most recent call last):
 File /opt/python-2.4.4/lib/python2.4/unittest.py, line 270, in run
   self.tearDown()
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/Zope2/Startup/tests/testStarter.py, 
line 69, in tearDown

   test_logger.LoggingTestBase.tearDown(self)
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/ZConfig/components/logger/tests/test_logger.py, 
line 72, in tearDown

   assert loghandler._reopenable_handlers == []
AssertionError

.

Error in test testSetupZServerThreads 
(Zope2.Startup.tests.testStarter.ZopeStarterTestCase)

Traceback (most recent call last):
 File /opt/python-2.4.4/lib/python2.4/unittest.py, line 270, in run
   self.tearDown()
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/Zope2/Startup/tests/testStarter.py, 
line 69, in tearDown

   test_logger.LoggingTestBase.tearDown(self)
 File 
/Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/python/ZConfig/components/logger/tests/test_logger.py, 
line 72, in tearDown

   assert loghandler._reopenable_handlers == []
AssertionError

.

Error in test testZopeRunConfigure 

[Zope-dev] Re: SVN: Zope/branches/ajung-2-11-prep-branch/lib/python/

2007-12-24 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Andreas Jung wrote:
 Log message for revision 82431:
   pinning zdaemon package to r40972 (as used on the current HEAD) 

Why wouldn't we move to using the 2.0.1 tag?


- --
===
Tres Seaver  +1 540-429-0999  [EMAIL PROTECTED]
Palladion Software   Excellence by Designhttp://palladion.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHb97K+gerLs4ltQ4RAmwjAKCrng0teaor6xV41H/ckqphMZXJlACgrnFL
tgH0TyNwTgGXFufoErGtdKY=
=iN+v
-END PGP SIGNATURE-

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Re: SVN: Zope/branches/ajung-2-11-prep-branch/lib/python/

2007-12-24 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Andreas Jung wrote:
 Zope fails to startup with 2.0.1, zdctl.py line 141 complains
 that a dict has no mapping() method... Short before x-mas dinner I have no
 interest in further debugging...so the older version works so far...
 just a savepoint :-)

I'll see if I can't hack it up, then.  I'll make the ZODB externals
point to the release candidate tag, while I'm at it.


Tres.
- --
===
Tres Seaver  +1 540-429-0999  [EMAIL PROTECTED]
Palladion Software   Excellence by Designhttp://palladion.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHb+t8+gerLs4ltQ4RAhQ5AJ9kG++G1DolavYVA7A/fUS4I1Qy1QCgw5UK
c+ptALarUjjrtC6+08wY0N0=
=2LaM
-END PGP SIGNATURE-

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Re: [Zope 2.11] KGS incomplete (Was: Stepping forward and going beta)

2007-12-24 Thread Philipp von Weitershausen

On 24 Dec 2007, at 16:32 , Andreas Jung wrote:

WARN: KGS incomplete - zope.app.content_types not found
WARN: KGS incomplete - zope.app.event not found
WARN: KGS incomplete - zope.app.filerepresentation not found
WARN: KGS incomplete - zope.app.location not found
WARN: KGS incomplete - zope.app.mail not found
WARN: KGS incomplete - zope.app.rdb not found
WARN: KGS incomplete - zope.app.servicenames not found
WARN: KGS incomplete - zope.app.site not found
WARN: KGS incomplete - zope.app.size not found
WARN: KGS incomplete - zope.app.tests not found


I kicked them.


Well, they've been deprecated for a while but it says they were  
scheduled for removal in Zope 3.5 which corresponds Zope 2.12. So we  
can't get rid of them just yet. Zope 2.11 shoudl still contain them.


IMO it's fine to simply leave the externals from the 2.10 branch for  
them in place.



I created a test branch and adjusted the externals so far.

zope.thread seems to be a broken (there is no _zope_thread.c
file)...however had no time for further investigations.


As Tres pointed out, the C extension is gone, so you can just remove  
that entry from setup.py.



And the testrunner produces 9 errors...anyone with a fast idea about
the reasons for the failures (before doing further investigations)?

/opt/python-2.4.4/bin/python /Users/ajung_data/sandboxes/Zope/ 
ajung-2-11-prep-branch/test.py -v

Running tests at level 1
Running unit tests:
Running:
..
rror in test testSetupConfiguredLoggers  
(Zope2.Startup.tests.testStarter.ZopeStarterTestCase)

Traceback (most recent call last):
File /opt/python-2.4.4/lib/python2.4/unittest.py, line 270, in run
  self.tearDown()
File /Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/ 
python/Zope2/Startup/tests/testStarter.py, line 69, in tearDown

  test_logger.LoggingTestBase.tearDown(self)
File /Users/ajung_data/sandboxes/Zope/ajung-2-11-prep-branch/lib/ 
python/ZConfig/components/logger/tests/test_logger.py, line 72, in  
tearDown

  assert loghandler._reopenable_handlers == []
AssertionError
...


I can say nothing about these failures. It seems like they're ZConfig- 
related.



Running zope.testbrowser.tests.TestBrowserLayer tests:
Tear down zope.formlib.tests.FormlibLayer in 0.005 seconds.
Set up zope.testbrowser.tests.TestBrowserLayer Traceback (most  
recent call last):

...
  ImportError: No module named session.interfaces



Running zope.traversing.tests.layer.TraversingLayer tests:
Set up zope.traversing.tests.layer.TraversingLayer Traceback (most  
recent call last):

...
  ConfigurationError: ('Invalid value for', 'package', 'ImportError:  
Module zope has no global securitypolicy')


Those two are related to an unplanned split-up of  
zope.app.securitypolicy and zope.app.session. They occurred in the  
3.4.x line even though they should've in the 3.5.x line. So, what  
you'll need to do is add externals for zope.session and  
zope.securitypolicy (notice the missing app!) according to the KGS.  
That should get that settled.


Thanks for tackling this, Andreas.

Merry Christmas,
Philipp

___
Zope-Dev maillist  -  Zope-Dev@zope.org
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
http://mail.zope.org/mailman/listinfo/zope-announce

http://mail.zope.org/mailman/listinfo/zope )