-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed errors related to retaining properties file values and slashes …
…in log and results directory; added the retsStatus code to the test results object and the xml report
- Loading branch information
1 parent
3bae989
commit 6a683ba
Showing
32 changed files
with
373 additions
and
77 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
classes/com/realtor/rets/compliance/TestExecuter$TestTransaction.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+64 Bytes
(100%)
classes/com/realtor/rets/compliance/tests/BaseEvaluator.class
Binary file not shown.
Binary file modified
BIN
+42 Bytes
(100%)
classes/com/realtor/rets/compliance/tests/NegativeBaseEvaluator.class
Binary file not shown.
Binary file modified
BIN
+20 Bytes
(100%)
classes/com/realtor/rets/compliance/tests/dmql/DMQLResults.class
Binary file not shown.
Binary file modified
BIN
+20 Bytes
(100%)
classes/com/realtor/rets/compliance/tests/dmql/DMQLResultsStandard.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
esults= | ||
loginurl=http://demo.rets.interealty.com/Login.asmx/Login | ||
password=1TR18M | ||
resultsdirectory=C:\results | ||
resultsdirectory=C:\projects\RESO\workspace\RESO-Server-Compliance-Tester\config\ | ||
retsVersion=RETS/1.8 | ||
transactionlogdirectory=C:\logs | ||
transactionlogdirectory=C:\projects\RESO\workspace\RESO-Server-Compliance-Tester\config | ||
uaPassword= | ||
useragent=RETS-Connector/1.2 | ||
username=RESOWG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package com.realtor.rets.compliance; | ||
import java.util.*; | ||
import java.io.*; | ||
|
||
/** | ||
* Created by IntelliJ IDEA. | ||
* User: paula | ||
* Date: 1/24/14 | ||
* Time: 5:36 AM | ||
* To change this template use File | Settings | File Templates. | ||
*/ | ||
public class PropertiesEx extends Properties { | ||
public void load(InputStream fis) throws IOException { | ||
System.out.println("in properties ex load"); | ||
|
||
Scanner in = new Scanner(fis); | ||
ByteArrayOutputStream out = new ByteArrayOutputStream(); | ||
|
||
while(in.hasNext()) { | ||
out.write(in.nextLine().replace("\\","\\\\").getBytes()); | ||
out.write("\n".getBytes()); | ||
} | ||
|
||
InputStream is = new ByteArrayInputStream(out.toByteArray()); | ||
super.load(is); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters