Add test cases for EML 2.1.0 documents. Add some generics typing.
New test case to test xml schema registration.
Delete test document after test is through.
Convert remainder of tests that use PropertyService to extend the MCTestCase class
Add debug statements
Increase test cases to include testing read action which reads file from disk and squery which reads from db. Create separate cases for eml 2.0.1 and 2.1.0
Move common constants into MCTestCase base class
Add more debug statements
Make sure DatabaseService gets instantiated
Add test cases for eml 2.1.0 documents
Add more PropertyService tests
Convert class to extend MCTestCase. Add debug statements.
Convert properties to camel case
qualify xml and eml properties with an xml. prefix
Continue to qualify property names
Initial addition of PropertyService test.
Qualify harvester properties
Extend TestCase. Fix accountnum property getter.
Extend MCTestCase
Add verbose debug statements. These are toggled by the test.printdebug property in metacat.properties
Extend MCTestCase to handle initialization of PropertyService
Replace Options class with PropertyService and create PropertyService using log directory name instead of servlet context
Use qualified test properties
Merge 1.9 changes into Head
Check into cvs head. Modify some query string.
Check into cvs head. Add initialize option statment at the beginging of the class.
Check into cvs head. Add the statement to initialize option.
Check into cvs head. Move the initialize option statement to the begining of class.
Checkinto cvs head.Move the initialize option statement to the begining of class, since user name is using getting option.
Fixed syntax error: no ; at an end of import statement.
Changes to remove ANT tokens for the turnkey install project
Add code to test upload same identifier twice.
Remove commented test case.
Modified the test for nonlationcharacter.
Add a junit test for test AuthLdap. Currently we have getPrincipals test.
Add method to handle origianl data file error in IPCC eml document
Modify this class in order to correct data file name in some IPCC eml documents
Fixed the implement of java class which will upload ipcc data.
Add a file which will upload ipcc data to metacat.
In reuseSession and reuseInvalidSession method, metacat.logout statement were added to make sure it will use fresh Metacat object.
Add test cases to test combination of allow and deny rules. Modify the generate id method to make sure id is unique.
Add token to replace usr/password
Add code to initialize Options and some code clean up
Add code to initialize Options. Otherwise will get null exception.
Test file to see how long it will take to build records in xml_queryresult table.
Add a new test to test new query method with qformat.
Add more test (update) on upload
Delete a test for printAttributeQuery which was delete from java file.
Test file for query group.
A query client to test metacat performance
Added a new class called Sitemap that is used to generate a series of XML documents representing the URLs of metacat documents following the sitemap protocol. The Sitemap class extends TimerTask so that it can be scheduled to run once a day or so. New configuration options were added to metacat.properties to control where the sitemaps are written and hw often they are updated. By default we do it once a day, as more often is overkill for search engines....
Currently every MetacatClientTest will generate new doicd and the the docid will be reused. So it will generate problem. I add new method to persistent the doicd in a file and this problem was fixed.
The generateId method somethimes couldn't generate a unique id if you put theminto a big for loop. So i added append to a random number at the end. It works wll
Add delete method in inserting spatial data.
Add new method to keep inserting spatial data.
Fixed exception handler
Eliminated the 'release' ant tag from the rest of the files. The 'release' property is still used in build.xml for creating releases, but the filter is no longer presnt. Now, when updating the metacat files for a release, you have to set the release version in both the build.xml and the metacat.properties files.
release
fixed bugs in teh client that were preventing the lsid service from working right
fix to the earlier commit. the code was dependent on 1.5. this one isnt
fix to the generateDocid() function so that the docid generated always is bigger than the earlier one.
Added new function getLastDocid to the metacat client so that it isaccessible to clients that need it.
Some changes to the tests to use Logger rather than debugMessage().
Removed unwanted code.
Fixed a bug in previous commit and added a test for characters like mu.
Adding test for checking Metacat behaviour when characters outside A-Z,a-z,0-9 are entered.
Related bugs: 1711, 1538 (1711 has been fixed as tested by this file. Have to add code to test 1711)
Currently checking for> when < > & is entered - test fails as expected as document is invalid...
Change URL value for Harvest unit tests.
Add a new test case for testing get newest revision number.
Removed hardcoded path from EventLogTest.
Fixed a bug.
Modified buildIndex() to now include an '@' sign in the path for ATTRIBUTEnodes. Removed a bunch of debugging information. Fixed the BuildIndexTestso that it would work on any machine (removed hardcoded paths).
Updated the build index test.
Added test class for buildIndex() routine. Not completed yet.
Added another test to check if access is checked when an old version of inline data is read using action=readinlinedata
Test added to insert eml 2.0.0 document and update it with eml 2.0.1 document.
Added a new method to check upload function when a data stream is passed.
Adding InlineDataAccessTest.java which has tests regarding inline data access. Also updated AccessControlTest.java
Made changes in AccessControl and Online Data Access tests.
Adding new file with tests regarding access controls related to online data... the tests which are failing are commented out for the time being .. once the bugs are fixed in metacat, they will removed.
Add additional comments to the test cases.
Remove obsolete comment.Fix broken URL in HarvestSiteScheduleTest.java
Some changes and a bug fix
Changed AccessControlTest.java to include new tests
Changed SubTreeTest.java to handle the exception that is thrown by SubTree.java now.
Added code to test the upload functionality in the client
Adding a new test file for testing the Access Controls in Metacat. Not complete or compilable yet.
Revise test suite after moving Harvester properties to metacat.properties.
Initial suite of JUnit tests for Harvester code
JUnit files for tseting Harvester code
Added the EventLog functionality to the servlet as action=getlog. Valid parameters are ipAddress, principal, docid, event, start, end. All parameters can be repeated except start and end.
Partial implementation of a query facility for the access log. Need to fix problems with the date filtering, and tie this into the servlet action when completed and tested.
New EventLogTest modifying the log call to exclude revision.
Added classes for basic event logging support. These classes write log entries to the database connection. Still to do: query the event log, write oracle sql code (postgres is done), possibly allow the log to be archived to a text file, and possibly do the dtabase writes asynchronously via a caching mechanism.
Added a simple action for finding out the current metacat version. The information is pulled from the property file, so be sure to update the version in the property file before shipping a release.
Changed printAttributeQuery() to no longer depend on the xml_index table. Now, if useXMLIndex is false, the method will use a recursive query on xml_nodes to match paths instead of using xml_index.
Created new printExtendedSQL function that can get the extendedreturn fields using only xml_nodes and not xml_index. Onestep closer to eliminating the dependence ofn xml_index.