Directory cdx/scorebot/net/tests/

Directory Created:
2007-01-22 12:58
Total Files:
11
Deleted Files:
0
Lines of Code:
1567

[root]/cdx/scorebot/net/tests
                     dns (4 files, 423 lines)
                     email (3 files, 242 lines)
                     generic (3 files, 181 lines)
                     jabber (3 files, 258 lines)
                     mysql (0 files, 0 lines)
                     samba (0 files, 0 lines)
                     smb (4 files, 378 lines)
                     vtc (0 files, 0 lines)
                     webserver (4 files, 305 lines)

Lines of Code

cdx/scorebot/net/tests/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 124 (100.0%) 2249 (100.0%) 18.1
dound 108 (87.1%) 1184 (52.6%) 10.9
genned 9 (7.3%) 880 (39.1%) 97.7
veryoriginal 3 (2.4%) 146 (6.5%) 48.6
rreagan3 4 (3.2%) 39 (1.7%) 9.7

Most Recent Commits

dound 2007-04-08 01:24

fixed serialVersionUID visibility / constancy

30 lines of code changed in:

  • cdx/scorebot/net/tests: AdminService.java (+3 -3), Configuration.java (+3 -3), ConnectionOrientedService.java (+3 -3), ConnectionOrientedUserService.java (+3 -3), Service.java (+3 -3), Test.java (+3 -3), TestEvent.java (+3 -3), TestItem.java (+3 -3), TestMisconfigurationException.java (+3 -3), TestSchedule.java (+3 -3)
dound 2007-04-08 01:09

Added public long serialVersionUID = 102L; to all serializable classes.

41 lines of code changed in:

  • cdx/scorebot/net/tests: AdminService.java (+4 -2), Configuration.java (+5 -3), ConnectionOrientedService.java (+4 -2), ConnectionOrientedUserService.java (+4 -2), Service.java (+4 -2), Test.java (+4 -2), TestEvent.java (+4 -2), TestItem.java (+4 -2), TestMisconfigurationException.java (+4 -2), TestSchedule.java (+4 -2)
dound 2007-04-08 00:52

Removed unneccessary null object tests.

9 lines of code changed in:

  • cdx/scorebot/net/tests: Configuration.java (+2 -3), TestEvent.java (+3 -5), TestItem.java (+2 -3), TestSchedule.java (+2 -3)
dound 2007-04-08 00:11

Performance: Iterate on entrySet vice keySet + get

18 lines of code changed in:

  • cdx/scorebot/net/tests: Test.java (+13 -12), TestItem.java (+5 -5)
dound 2007-04-02 10:48

The process which checks to see if the file currently being edited now prompts the user to see if they want to save changes or not only if the file has been changed, and always if the file has been changed. Previously, an imperfect method which didn't work as well was being used.
equals( Object o ) has also been overriden for all objects in the framework.

139 lines of code changed in:

  • cdx/scorebot/net/tests: Configuration.java (+17 -2), Service.java (+13 -2), Test.java (+21 -2), TestEvent.java (+49 -17), TestItem.java (+17 -9), TestSchedule.java (+22 -2)
dound 2007-04-02 02:59

IllegalArgValException now thrown instead of IllegalArgumentException in many cases so that the user is forced to check the Exception in case it occurs.

6 lines of code changed in:

  • cdx/scorebot/net/tests: AdminService.java (+3 -3), TestItem.java (+3 -3)
dound 2007-03-31 14:08

The user may now specify keywords $IP or $PORT in option's of type String.

15 lines of code changed in:

  • cdx/scorebot/net/tests: TestItem.java (+15 -4)
dound 2007-03-29 23:17

Result filtering now works.

13 lines of code changed in:

  • cdx/scorebot/net/tests: TestItem.java (+13 -2)
dound 2007-03-29 19:32

Added the ability to get results with names and set results from a vector. Also added a name field to ResultInfoPair an appropriate toString method.

41 lines of code changed in:

  • cdx/scorebot/net/tests: TestEvent.java (+41 -4)
dound 2007-03-29 00:01

Names may now only contain allow letters, number, spaces, and underscores.

4 lines of code changed in:

  • cdx/scorebot/net/tests: TestItem.java (+4 -4)
dound 2007-03-28 10:18

Test type is no longer part of toString (it was too long)

3 lines of code changed in:

  • cdx/scorebot/net/tests: TestEvent.java (+3 -3)
dound 2007-03-28 09:50

The tree is now populated correctly (including apporpriate icons and node data).

6 lines of code changed in:

  • cdx/scorebot/net/tests: TestEvent.java (+6 -2)
dound 2007-03-27 15:02

Event now contains reporting information.

4 lines of code changed in:

  • cdx/scorebot/net/tests: TestEvent.java (+4 -13)
dound 2007-03-23 23:00

Framework Change: Test now manages the service field. Also, setService has been added. Also, Test now takes a generic parameter which allows children to specify what kind of Service they require.

25 lines of code changed in:

  • cdx/scorebot/net/tests: Test.java (+25 -7)
rreagan3 2007-03-23 19:03

added a constructor that allows preloading a configuration

13 lines of code changed in:

  • cdx/scorebot/net/tests: TestItem.java (+13 -2)
rreagan3 2007-03-23 00:18

got rid of apostraphes so that file could be encoded in utf8

3 lines of code changed in:

  • cdx/scorebot/net/tests: AdminService.java (+3 -3)
rreagan3 2007-03-22 21:44

added function getInitialConfigCopy() which does the same as getDefaultConfigValuesCopy() EXCEPT that it gives whole ConfigOptions and not just short copies

17 lines of code changed in:

  • cdx/scorebot/net/tests: Test.java (+17 -2)
dound 2007-03-21 03:03

Fixed up the tests packages. Change summary:
1) Method added which asks the Test to add the "default" results (to ensure all results are given a value!)
2) Option naming, usage, and verification fixed
3) MD5 class move to cdx.scorebot.util
4) IntegrityCheck class created to make it easy to do multiple kinds of verification including MD5, Regular Expressions/Pattern Matching, or nothing (i.e. just complete the retrieval).
5) Deleted unused packages -- mysql and vtc
6) Removed unused connect and disconnect methods
7) Updated the ReadFile class so that it can now verify what it retrieved instead of just retrieving the file.
8) Minor bug fixes in several files (really, just mismatched option and result names)
9) Replaced all usages of "details" result returns with setExplanation calls. Standardized these calls as well.

16 lines of code changed in:

  • cdx/scorebot/net/tests: ConnectionOrientedService.java (+2 -20), Test.java (+11 -4), TestEvent.java (+3 -3)
dound 2007-03-05 21:41

setExplanation was mistakenly named getExplanation

3 lines of code changed in:

  • cdx/scorebot/net/tests: TestEvent.java (+3 -3)
dound 2007-03-05 02:03

Added equals and hashCode methods.

14 lines of code changed in:

  • cdx/scorebot/net/tests: TestItem.java (+14 -2)

(49 more)

Generated by StatCVS 0.3