Revision: 549
Author: solsson
Date: 2006-08-02 01:07:07 -0700 (Wed, 02 Aug 2006)
ViewCVS: http://svn.sourceforge.net/jwebunit/?rev=549&view=rev
Log Message:
-----------
Removed the rubywiki, because I don't know if it was maintained. It can still
be found at -r 400 trunk/mess/fitplugin. Also omitted the scripts and documents
in the root of fitplugin because they were not up to date.
Created a maven2 pom.xml. Added maven2 source folders. Kept the maven1 files
for reference until migration to maven2 is done.
Added Paths:
-----------
trunk/jwebfit/pom.xml
Removed Paths:
-------------
trunk/jwebfit/.cvsignore
trunk/jwebfit/asserts.txt
trunk/jwebfit/asserts2checks.rb
trunk/jwebfit/checks.txt
trunk/jwebfit/fit-changes.txt
trunk/jwebfit/fit.bat
trunk/jwebfit/fitTask.xml
trunk/jwebfit/fitdir.bat
trunk/jwebfit/fitwiki.html
trunk/jwebfit/googlein.html
trunk/jwebfit/lib/jwebunit-1.2.jar
trunk/jwebfit/lib/jwebunit-1.3.jar
trunk/jwebfit/rubywiki/
Deleted: trunk/jwebfit/.cvsignore
===================================================================
--- trunk/jwebfit/.cvsignore 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/.cvsignore 2006-08-02 08:07:07 UTC (rev 549)
@@ -1 +0,0 @@
-testOutput
Deleted: trunk/jwebfit/asserts.txt
===================================================================
--- trunk/jwebfit/asserts.txt 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/asserts.txt 2006-08-02 08:07:07 UTC (rev 549)
@@ -1,45 +0,0 @@
-assertTitleEquals(java.lang.String)
-assertTitleEqualsKey(java.lang.String)
-assertKeyPresent(java.lang.String)
-assertTextPresent(java.lang.String)
-assertKeyNotPresent(java.lang.String)
-assertTextNotPresent(java.lang.String)
-assertTablePresent(java.lang.String)
-assertTableNotPresent(java.lang.String)
-assertKeyInTable(java.lang.String, java.lang.String)
-assertTextInTable(java.lang.String, [Ljava.lang.String;)
-assertTextInTable(java.lang.String, java.lang.String)
-assertKeysInTable(java.lang.String, [Ljava.lang.String;)
-assertKeyNotInTable(java.lang.String, java.lang.String)
-assertTextNotInTable(java.lang.String, [Ljava.lang.String;)
-assertTextNotInTable(java.lang.String, java.lang.String)
-assertTableEquals(java.lang.String, [[Ljava.lang.String;)
-assertTableEquals(java.lang.String, net.sourceforge.jwebunit.ExpectedTable)
-assertTableRowsEqual(java.lang.String, int, [[Ljava.lang.String;)
-assertTableRowsEqual(java.lang.String, int,
net.sourceforge.jwebunit.ExpectedTable)
-assertFormElementPresent(java.lang.String)
-assertFormElementNotPresent(java.lang.String)
-assertFormPresent(java.lang.String)
-assertFormPresent()
-assertFormElementEquals(java.lang.String, java.lang.String)
-assertCheckboxSelected(java.lang.String)
-assertCheckboxNotSelected(java.lang.String)
-assertRadioOptionPresent(java.lang.String, java.lang.String)
-assertRadioOptionNotPresent(java.lang.String, java.lang.String)
-assertRadioOptionSelected(java.lang.String, java.lang.String)
-assertRadioOptionNotSelected(java.lang.String, java.lang.String)
-assertOptionsEqual(java.lang.String, [Ljava.lang.String;)
-assertOptionsNotEqual(java.lang.String, [Ljava.lang.String;)
-assertOptionValuesEqual(java.lang.String, [Ljava.lang.String;)
-assertOptionValuesNotEqual(java.lang.String, [Ljava.lang.String;)
-assertOptionEquals(java.lang.String, java.lang.String)
-assertSubmitButtonPresent(java.lang.String)
-assertSubmitButtonNotPresent(java.lang.String)
-assertSubmitButtonValue(java.lang.String, java.lang.String)
-assertLinkPresent(java.lang.String)
-assertLinkNotPresent(java.lang.String)
-assertLinkPresentWithText(java.lang.String)
-assertLinkNotPresentWithText(java.lang.String)
-assertElementPresent(java.lang.String)
-assertElementNotPresent(java.lang.String)
-assertTextInElement(java.lang.String, java.lang.String)
\ No newline at end of file
Deleted: trunk/jwebfit/asserts2checks.rb
===================================================================
--- trunk/jwebfit/asserts2checks.rb 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/asserts2checks.rb 2006-08-02 08:07:07 UTC (rev 549)
@@ -1,10 +0,0 @@
-out = File.new('checks.txt', 'w')
-File.open('asserts.txt') { |f|
- f.each_line { |l|
- l.gsub!(/assert|\java\.lang\.|\)|;|net\.sourceforge\.jwebunit\./, '')
- l.gsub!(/[A-Z]/) {|s| " #{s.downcase}"}
- l.gsub!(/\(|,/, ' |')
- out.puts('| check | ' + l.strip + ' |')
- }
-}
-out.close
\ No newline at end of file
Deleted: trunk/jwebfit/checks.txt
===================================================================
--- trunk/jwebfit/checks.txt 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/checks.txt 2006-08-02 08:07:07 UTC (rev 549)
@@ -1,45 +0,0 @@
-| check | title equals | string |
-| check | title equals key | string |
-| check | key present | string |
-| check | text present | string |
-| check | key not present | string |
-| check | text not present | string |
-| check | table present | string |
-| check | table not present | string |
-| check | key in table | string | string |
-| check | text in table | string | [ l string |
-| check | text in table | string | string |
-| check | keys in table | string | [ l string |
-| check | key not in table | string | string |
-| check | text not in table | string | [ l string |
-| check | text not in table | string | string |
-| check | table equals | string | [[ l string |
-| check | table equals | string | expected table |
-| check | table rows equal | string | int | [[ l string |
-| check | table rows equal | string | int | expected table |
-| check | form element present | string |
-| check | form element not present | string |
-| check | has form | string |
-| check | has form | |
-| check | form element equals | string | string |
-| check | checkbox selected | string |
-| check | checkbox not selected | string |
-| check | radio option present | string | string |
-| check | radio option not present | string | string |
-| check | radio option selected | string | string |
-| check | radio option not selected | string | string |
-| check | options equal | string | [ l string |
-| check | options not equal | string | [ l string |
-| check | option values equal | string | [ l string |
-| check | option values not equal | string | [ l string |
-| check | option equals | string | string |
-| check | submit button present | string |
-| check | submit button not present | string |
-| check | submit button value | string | string |
-| check | link present | string |
-| check | link not present | string |
-| check | link present with text | string |
-| check | link not present with text | string |
-| check | element present | string |
-| check | element not present | string |
-| check | text in element | string | string |
Deleted: trunk/jwebfit/fit-changes.txt
===================================================================
--- trunk/jwebfit/fit-changes.txt 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/fit-changes.txt 2006-08-02 08:07:07 UTC (rev 549)
@@ -1 +0,0 @@
-Requires fit-b021021j
\ No newline at end of file
Deleted: trunk/jwebfit/fit.bat
===================================================================
--- trunk/jwebfit/fit.bat 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/fit.bat 2006-08-02 08:07:07 UTC (rev 549)
@@ -1,2 +0,0 @@
-set
cpath=..\classes;..\lib\httpunit.jar;..\lib\js.jar;..\lib\junit.jar;..\lib\servlet.jar;..\lib\Tidy.jar;..\lib\xercesImpl.jar;..\lib\xml-apis.jar
-java -cp %cpath% fit.FileRunner %1 %2
\ No newline at end of file
Deleted: trunk/jwebfit/fitTask.xml
===================================================================
--- trunk/jwebfit/fitTask.xml 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/fitTask.xml 2006-08-02 08:07:07 UTC (rev 549)
@@ -1,13 +0,0 @@
-<project name="fittask" default="runfit">
- <target name="runfit">
- <java classname="net.sourceforge.jwebunit.fit.DirectoryRunner"
fork="true">
- <classpath>
- <pathelement location="../classes"/>
- <fileset dir="../lib">
- <include name="*.jar"/>
- </fileset>
- </classpath>
- <arg line="testdata/input testdata/output"/>
- </java>
- </target>
-</project>
\ No newline at end of file
Deleted: trunk/jwebfit/fitdir.bat
===================================================================
--- trunk/jwebfit/fitdir.bat 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/fitdir.bat 2006-08-02 08:07:07 UTC (rev 549)
@@ -1,3 +0,0 @@
-set projectDir=C:\wp\jwebunit\jWebunit
-set
cpath=%projectDir%\classes;%projectDir%\lib\fit.jar;%projectDir%\lib\httpunit.jar;%projectDir%\lib\js.jar;%projectDir%\lib\junit.jar;%projectDir%\lib\servlet.jar;%projectDir%\lib\nekohtml.jar;%projectDir%\lib\xercesImpl.jar;%projectDir%\lib\xml-apis.jar
-java -cp %cpath% -Dwiki=true net.sourceforge.jwebunit.fit.DirectoryRunner %1 %2
\ No newline at end of file
Deleted: trunk/jwebfit/fitwiki.html
===================================================================
--- trunk/jwebfit/fitwiki.html 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/fitwiki.html 2006-08-02 08:07:07 UTC (rev 549)
@@ -1,13 +0,0 @@
-<table BORDER CELLSPACING=0 CELLPADDING=3>
-<tr><td>net.sourceforge.jwebunit.fit.WebFixture</td></tr>
-<tr><td> baseUrl </td><td> http://fit.c2.com </td></tr>
-<tr><td> begin </td><td>/</td></tr>
-<tr><td> check </td><td> title equals </td><td>Wiki: Welcome Visitors</td></tr>
-<tr><td> enter </td><td> search</td><td>MartinFowler</td></tr>
-<tr><td> press </td><td> submit </td></tr>
-<tr><td> check </td><td> title equals </td><td>Wiki: Search Results</td></tr>
-<tr><td> check </td><td> link present with
text</td><td>NonExistentLink</td></tr>
-<tr><td> check </td><td> link present with text</td><td>MartinFowler</td></tr>
-</table>
-
-
\ No newline at end of file
Deleted: trunk/jwebfit/googlein.html
===================================================================
--- trunk/jwebfit/googlein.html 2006-08-02 08:03:49 UTC (rev 548)
+++ trunk/jwebfit/googlein.html 2006-08-02 08:07:07 UTC (rev 549)
@@ -1,11 +0,0 @@
-<table BORDER CELLSPACING=0 CELLPADDING=3>
-<tr><td>net.sourceforge.jwebunit.fit.WebFixture</td></tr>
-<tr><td> baseUrl </td><td> http://google.com </td></tr>
-<tr><td> begin </td><td>/</td></tr>
-<tr><td> check </td><td> title equals </td><td> Google </td></tr>
-<tr><td> press </td><td> link </td><td> Jobs </td></tr>
-<tr><td> check </td><td> title equals </td><td> About Google </td></tr>
-<tr><td> press </td><td> link </td><td> Press </td></tr>
-<tr><td> press </td><td> link </td><td> Review </td></tr>
-<tr><td> check </td><td> title equals </td><td> Google Press Room </td></tr>
-</table>
\ No newline at end of file
Deleted: trunk/jwebfit/lib/jwebunit-1.2.jar
===================================================================
(Binary files differ)
Deleted: trunk/jwebfit/lib/jwebunit-1.3.jar
===================================================================
(Binary files differ)
Added: trunk/jwebfit/pom.xml
===================================================================
--- trunk/jwebfit/pom.xml (rev 0)
+++ trunk/jwebfit/pom.xml 2006-08-02 08:07:07 UTC (rev 549)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <parent>
+ <artifactId>jwebunit</artifactId>
+ <groupId>net.sourceforge.jwebunit</groupId>
+ <version>2.0-SNAPSHOT</version>
+ <relativePath>../</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>jwebfit</artifactId>
+ <name>jWebFit</name>
+ <description>Run jWebUnit as FIT fixture</description>
+ <dependencies>
+ <dependencies>
+ <dependency>
+ <groupId>fit</groupId>
+ <artifactId>fit</artifactId>
+ <version>1.1</version>
+ <scope>system</scope>
+ <systemPath>${basedir}/lib/fit.jar</systemPath>
+ </dependency>
+ </dependencies>
+ </dependencies>
+ <properties>
+ <topDirectoryLocation>..</topDirectoryLocation>
+ </properties>
+</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Jwebunit-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jwebunit-development