summaryrefslogtreecommitdiffstats
path: root/src/software
Commit message (Collapse)AuthorAgeFilesLines
* software version bump to 0.9Michal Minar2013-03-221-1/+1
| | | | updated README
* added new providersMichal Minar2013-03-216-0/+1157
| | | | | | | | | | providers added: * LMI_AffectedSoftwareJobElement * LMI_AssociatedSoftwareJobMethodResult * LMI_OwningSoftwareJobElement * LMI_SoftwareMethodResult subclassed job classes defined in LMI_Jobs.mof
* various enhancementsMichal Minar2013-03-2115-136/+160
| | | | | | | | | | | | | | consistent access to Package's version and release attributes - all 'ver' and 'rel' replaced to full names added tracing decorators to some functions providers having Values class under core subpackage now reference it with self.values property Identity.pkg2model now accepts also nevra as string removed tabs in source code
* Merge remote-tracking branch 'origin/master' into software-smashMichal Minar2013-03-2046-642/+642
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/software/cli/software.py src/software/openlmi/__init__.py src/software/openlmi/software/LMI_HostedSoftwareIdentityResource.py src/software/openlmi/software/LMI_SoftwareFileCheck.py src/software/openlmi/software/LMI_SoftwareInstalledPackage.py src/software/openlmi/software/LMI_SoftwarePackage.py src/software/openlmi/software/__init__.py src/software/openlmi/software/cimom_entry.py src/software/openlmi/software/core/ComputerSystem.py src/software/openlmi/software/core/SoftwareFileCheck.py src/software/openlmi/software/core/SoftwareInstalledPackage.py src/software/openlmi/software/core/SoftwarePackage.py src/software/openlmi/software/core/SoftwarePackageChecks.py src/software/openlmi/software/core/__init__.py src/software/openlmi/software/util/__init__.py src/software/openlmi/software/yumdb/__init__.py src/software/openlmi/software/yumdb/errors.py src/software/openlmi/software/yumdb/jobs.py src/software/openlmi/software/yumdb/packagecheck.py src/software/openlmi/software/yumdb/packageinfo.py src/software/openlmi/software/yumdb/process.py src/software/test/base.py src/software/test/rpmcache.py src/software/test/run.py src/software/test/test_software_file_check.py src/software/test/test_software_installed_package.py src/software/test/test_software_package.py
| * Happy New Year! (better later than never)Jan Synacek2013-03-1327-27/+27
| |
* | happy new yearMichal Minar2013-03-2044-44/+44
| | | | | | | | welcome 2013! in our source code
* | changed LMI:* prefixes in key propertiesMichal Minar2013-03-208-26/+27
| | | | | | | | to avoid id collisions with other OpenLMI classes
* | added new providers, allowed for asynchronous jobsMichal Minar2013-03-2025-367/+4699
| | | | | | | | | | | | new providers: LMI_SoftwareInstallationJob LMI_SoftwareInstallationService
* | added association providers for SoftwareIdentityResourceMichal Minar2013-03-047-90/+781
| | | | | | | | simplified writing references() method of any association provider
* | lot of bugfixes in communicationMichal Minar2013-02-2616-259/+467
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | communication: * now the client can detect YumWorker's early termination and restart it * session level is counted on client and server side - this allows to restore session state, when process is restarted * minimized session nesting on server to 1 at max - thanks to counter on client side - reduces communication traffic * improved logging api changes: * PackageInfo's pkgid renamed to objid * Repository's name renamed to repoid caption renamed to name * added include_repos and exclude_repos to YumDB methods, where it makes sense other bugfixes: * fixed issues with repo enable * assigning None to Instance properties with CIMProperty values instead of skipping the value assignment to prevent using old reference to value allowed for repository management - enable/disable allowed to list/filter packages of particular repositories added filter for packages to match those belonging to repository testing: * improved testing speed using run.py script * removed unfinishable tests
* | added LMI_SoftwareIdentityResource providerMichal Minar2013-02-1813-14/+1808
| | | | | | | | now it's possible to list and manage repositories
* | disabled devel - loggingMichal Minar2013-02-141-2/+2
| |
* | more code shared thanks to path checking partitioningMichal Minar2013-02-133-19/+35
| |
* | fixed wrong thread synchronizationMichal Minar2013-02-132-4/+11
| | | | | | | | job could not be finished on rare occasions
* | new association provider LMI_InstalledSoftwareIdentityMichal Minar2013-02-133-1/+568
| |
* | initial phase of rewrite for SMASH profileMichal Minar2013-02-1334-3828/+2643
|/ | | | | currently only a subset of Software Inventory profile is supported * listing available packages
* logging improvementsMichal Minar2013-02-051-0/+11
| | | | | | made tracing message for function exit match the entry one added threading related logging for YumDB
* new subpackage openlmi.common created for sharing codeMichal Minar2013-02-049-214/+11
| | | | | | | | openlmi.common subpackage allows to share code accros various OpenLMI provider packages. Currently there is a cmpi_logging.py module. Resolves: #71 in openlmi trac -- Make common package under openlmi namespace for utilities shared accross python providers.
* rewritten for safe execution of transactionsMichal Minar2013-02-0427-1602/+3402
| | | | | | | | | | | | | | | | | | | | | | | Made separate process openlmi.software.yumdb.process.YumWorker for calls to yum API. Its client openlmi.software.yumdb.YumDB communicates with it via synchronnous queues - uplink and downlink. Resolves: #63 in openlmi trac -- yum API not useable, while changing thread_id) Resolves: #33 in openlmi trac -- Install/remove package Common functionality of providers moved under openlmi.software.core subpackage to make them easily accessible from other providers without cyclic dependencies. Improved logging with cmpi_logging module. openlmi.software.cimom_entry module now is the only module loadable by cmpi-bindings. It sets up providers and maps them by their name. New subpackages: openlmi.software.core openlmi.software.yumdb
* 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