Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 74210 invoked from network); 27 Dec 2006 04:55:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Dec 2006 04:55:22 -0000 Received: (qmail 8777 invoked by uid 500); 27 Dec 2006 04:55:29 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 8754 invoked by uid 500); 27 Dec 2006 04:55:29 -0000 Mailing-List: contact continuum-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-commits@maven.apache.org Received: (qmail 8741 invoked by uid 99); 27 Dec 2006 04:55:29 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Dec 2006 20:55:29 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Dec 2006 20:55:21 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 473A61A981A; Tue, 26 Dec 2006 20:54:29 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r490440 - /maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java Date: Wed, 27 Dec 2006 04:54:29 -0000 To: continuum-commits@maven.apache.org From: brett@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061227045429.473A61A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Tue Dec 26 20:54:28 2006 New Revision: 490440 URL: http://svn.apache.org/viewvc?view=rev&rev=490440 Log: fix some tests - requires you be logged in to do the tearDown steps Modified: maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java Modified: maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java?view=diff&rev=490440&r1=490439&r2=490440 ============================================================================== --- maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java (original) +++ maven/continuum/trunk/continuum-webapp-test/src/test/it/org/apache/continuum/web/test/AbstractContinuumTestCase.java Tue Dec 26 20:54:28 2006 @@ -444,6 +444,10 @@ { try { + goToLoginPage(); + + submitLoginPage( adminUsername, adminPassword ); + goToProjectGroupsSummaryPage(); if ( isLinkPresent( TEST_PROJ_GRP_NAME ) ) @@ -459,6 +463,7 @@ } catch ( Exception e ) { + // TODO! should be rethrowing this, but the tearDown in the parent doesn't allow it e.printStackTrace(); }