summaryrefslogtreecommitdiffstats
path: root/src/software
Commit message (Collapse)AuthorAgeFilesLines
* fixed test selection, when launching tests with runMichal Minar2012-12-137-261/+524
| | | | | | | | | | | | | | | | particular tests can be selected like this: * # runs all tests defined by this test case ./run.py -- TestSoftwarePackage * # runs single test defined by TestSoftwarePackage TestCase ./run.py -- TestSoftwarePackage.test_get_instance added comments for each assert made results of tests a lot more readable different file mode for symlinks passes like in rpm -V increased number of packages for testing to 5
* more software test bugfixesMichal Minar2012-12-111-2/+4
| | | | | * handle '*' in yum repolist * select pkg database from 5 times required number of packages
* fixed tests for f18 an RHEL7Michal Minar2012-12-112-22/+72
|
* comply with nosetests rulesMichal Minar2012-12-073-10/+10
| | | | | all methods, functions and modules including 'test' in their name and not intended to be run by nosetests renamed
* non-ascii char appeared in commentMichal Minar2012-12-071-1/+1
| | | | fixed syntax error
* fixed package sorting errorsMichal Minar2012-12-073-8/+5
| | | | | Wrong package could be selected for update due to wrong sorting mechanism.
* rewritten tests for software managementMichal Minar2012-12-077-339/+1195
| | | | | | | | | All tests are invocable from single script called "run_tests.py" and as standalone-modules as well. Its behaviour is modifiable through environment variables according to TestGuidelines. run_tests.py can be passed arguments instead. Package database is not fixed anymore. Instead it's generated automatically for system, where tests are triggered.
* fixed most of pylint errorsMichal Minar2012-11-296-483/+457
| | | | | | | | | also modified mof, so it's better parseable greatly reduced pylint errors and warnings LMI_SoftwareInstalledPackage now returns reference to Linux_ComputerSystem instead of CIM_ComputerSystem
* added pylintlmi checker for python source checkingMichal Minar2012-11-2811-2/+24
| | | | | | | | | | | | | | | | | | pylintlmi uses pylint (python source code checking utility) - giving it custom configuration for openlmi project and plugins with additional checks for usage see src/software/README renamed directory "src/software/providers" to "src/software/openlmi/software" * allows installation to custom PYTHONPATH together with openlmi-python egg * that also allows running pylint on sources in devel directory without messages like: W0403: 28,0: Relative import 'openlmi.software.core', should be 'openlmi.software.openlmi.software.core' E0611: 28,0: No name 'software' in module 'openlmi' F0401: 28,0: Unable to import 'openlmi.software.core'
* Relicence all sources from GPLv2+ to LGPLv2+0.0.15Radek Novacek2012-11-1213-65/+188
|
* fixed import in software providerMichal Minar2012-11-081-1/+1
|
* fixed software setup.py0.0.14Michal Minar2012-11-081-1/+1
|
* added python namespace package called openlmiMichal Minar2012-11-086-11/+13
| | | | | This is aimed to be a common package for all openlmi python providers. It allows using fully-qualified imports in provider source packages.
* modified for used under tog-pegasusMichal Minar2012-10-243-33/+35
| | | | | | | | | | | | Checkum property of LMI_SoftwareFileCheck had different type than in base class. This prevented registration. - Solved by renaming: Checksum -> FileChecksum ExpectedChecksum -> ExpectedFileChecksum ChecksumType -> FileChecksumType fixed filtering of found available and installed packages - search by nevra replaced with search for particular keys
* Change project name from Cura to OpenLMIRadek Novacek2012-10-222-6/+6
|
* added a cli tool for testing software provider0.0.9Michal Minar2012-10-131-0/+271
|
* renamed LMI_SoftwarePackage{File,Checks}Michal Minar2012-10-132-71/+107
| | | | | corrected some corner cases, when getting/modifying instance with wrong or missing keys
* changed install directory for software providersMichal Minar2012-10-101-4/+4
| | | | bumped version
* renamed yum package providers to softwareMichal Minar2012-10-1015-0/+3800
renamed LMI_Yum* to LMI_Software* removed attributes GroupString and LicenseString from LMI_SoftwarePackage modified attributes Group, Architecture and License of LMI_SoftwarePackage to return string instead of Uints - because values and valuemaps would need frequent updates