summaryrefslogtreecommitdiffstats
path: root/ipalib/tests
Commit message (Collapse)AuthorAgeFilesLines
* 60: Remeved depreciated base.py, crud.py; remeved corresponding ↵Jason Gerard DeRose2008-08-062-446/+0
| | | | test_base.py, test_crud.py
* 57: to_cli() function no longer replaces '__' with '.'; from_cli() function ↵Jason Gerard DeRose2008-08-061-9/+5
| | | | no longer replaces '.' with '__'; updated unit tests
* 54: Added plugable.Proxy._clone() method; fleshed out public.obj; updated ↵Jason Gerard DeRose2008-08-061-0/+7
| | | | unit tests; port ipa script
* 52: Got cli working against new frameworkJason Gerard DeRose2008-08-051-2/+2
|
* 49: Added public.PublicAPI class; added some basic unit tests for sameJason Gerard DeRose2008-08-051-0/+17
|
* 48: Added public.py with base classes for 'public' api used for XML-RPC, ↵Jason Gerard DeRose2008-08-051-0/+66
| | | | CLI, and UI; added corresponding unit stests
* 47: Added plugable.check_identifier() function; added corresponding unit testsJason Gerard DeRose2008-08-051-0/+24
|
* 46: plugable.API now takes allowed base class in __init__ and creates ↵Jason Gerard DeRose2008-08-051-4/+5
| | | | Registrar at API.register, thereby coupling the two; updated correspending unit tests
* 44: Added Plugin.finalize() method called by API after all plugin instances ↵Jason Gerard DeRose2008-08-051-4/+12
| | | | are created; updated corresponding unit tests
* 43: Fleshed out new plugable.API class; added corresponding unit testsJason Gerard DeRose2008-08-051-0/+67
|
* 42: plugable.Plugin.__init__() now takes the plugable.API instance as its ↵Jason Gerard DeRose2008-08-011-4/+11
| | | | single argument
* 41: New plugable.NameSpace now has attributes set for each member; updated ↵Jason Gerard DeRose2008-08-011-2/+8
| | | | unit tests
* 40: Rewrote dictionary interface for plugable.NameSpace to better suite new ↵Jason Gerard DeRose2008-08-012-1/+69
| | | | architecture
* 39: Added unit tests for Registrar.__iter__()Jason Gerard DeRose2008-08-011-0/+38
|
* 38: dict interface of Registrar now works with both classes and strings as ↵Jason Gerard DeRose2008-08-011-14/+23
| | | | the key
* 37: Renamed tstutil.yes_raises() to raises(); changed test_plugable.py to ↵Jason Gerard DeRose2008-08-013-57/+11
| | | | use raises() throughout
* 36: Added more functionality to tests.tstutil; added corresponding ↵Jason Gerard DeRose2008-08-012-16/+178
| | | | tests.test_tstutil unit tests
* 35: Renamed unit_common.py to tstutil.pyJason Gerard DeRose2008-08-012-7/+7
|
* 34: Added tests.unit_common with frequently used utility functions; split ro ↵Jason Gerard DeRose2008-08-012-0/+81
| | | | __setattr__, __delattr__ methods out of Proxy and into new ReadOnly base class; added corresponding unit tests
* 33: Finished unit tests for plugable.ProxyJason Gerard DeRose2008-08-011-9/+66
|
* 32: Added Plugin and Proxy base classes in plugable module, along with ↵Jason Gerard DeRose2008-07-311-0/+47
| | | | to_cli() and from_cli() functions; added correspending unit tests
* 31: Renamed exceptions.py to errors.pyJason Gerard DeRose2008-07-312-10/+10
|
* 30: Added plugable module with more generic implementation of Registrar; ↵Jason Gerard DeRose2008-07-281-0/+115
| | | | added corresponding unit tests
* 29: Some experimentation to make the Registar more generalizedJason Gerard DeRose2008-07-251-75/+89
|
* 28: Added new base.Register class that is a more generic way of doing the ↵Jason Gerard DeRose2008-07-221-0/+61
| | | | plugin registration and doesn't itself instatiate any plugins; added corresponding unit tests
* 24: Ported Registar to changes around Attribute; updated unit testsJason Gerard DeRose2008-07-201-73/+71
|
* 23: Added base.Attribute class that determins the object association via ↵Jason Gerard DeRose2008-07-201-0/+71
| | | | class naming convention instead of through the _obj attribute
* 19: Removed depreciated base2.py and test_base2.py filesJason Gerard DeRose2008-07-201-155/+0
|
* 18: Moved base2 stuff into baseJason Gerard DeRose2008-07-201-165/+72
|
* 17: Registar.finalize() now sets the commands property on each object with ↵Jason Gerard DeRose2008-07-201-0/+5
| | | | commands
* 16: Changed base2.WithObj.__set_obj() slightly so that its gets locked into ↵Jason Gerard DeRose2008-07-201-0/+8
| | | | read-only even when _obj is None
* 15: Added ipalib.base2 module where I'm experimenting with a 3rd approach ↵Jason Gerard DeRose2008-07-201-0/+142
| | | | that is a hybrid of the first two: a decoupled late binding OO strategy
* 14: Added Named.cli property that returns name.replace('_', '-'); Named.doc ↵Jason Gerard DeRose2008-07-201-0/+11
| | | | property now does a strip() to make it more user-friendly; added test_Named unit tests which somehow got dropped, uppdated with new Named properties
* 12: Fixed test_base.test_API.test_finalize() unit tests now that CrudLike ↵Jason Gerard DeRose2008-07-201-3/+3
| | | | has 4 commands, not 5
* 10: Updated base.API to reflect the fact that base.Object is now the new ↵Jason Gerard DeRose2008-07-201-50/+51
| | | | unit of plugin functionality; updated corresponding unit tests
* 9: Reorganized new work and unit tests based around base.Object being the ↵Jason Gerard DeRose2008-07-192-156/+88
| | | | plugin definining unit
* 8: Experimental work on more OO definition of what gets pluged into API.commandsJason Gerard DeRose2008-07-191-0/+111
|
* 7: Roughed out API.finalize(); added corresponding unit testsJason Gerard DeRose2008-07-191-2/+26
|
* 6: Fleshed out API.register_command, made correpsonding unit tests much more ↵Jason Gerard DeRose2008-07-191-13/+44
| | | | rigorous
* 5: Fleshed out base.Named, added corresponding unit testsJason Gerard DeRose2008-07-191-0/+71
|
* 4: Got basics of API.register_command() working; added corresponding unit testsJason Gerard DeRose2008-07-191-1/+64
|
* 3: Finished NameSpace and cerresponding unit testsJason Gerard DeRose2008-07-191-10/+78
|
* 2: Got basics of NameSpace working, added corresponding unit testsJason Gerard DeRose2008-07-181-3/+82
|
* 1: Started roughing out ipalib packageJason Gerard DeRose2008-07-182-0/+26