Commit Graph

414 Commits

Author SHA1 Message Date
Peter Hamilton 2caeacc5f7 Merge pull request #97 from OpenKMIP/feat/add-travis-and-coveralls
Adding Travis CI and Coveralls support
2015-10-07 18:17:19 -04:00
Peter Hamilton 223d536014 Adding Travis CI and Coveralls support
This change adds Travis CI and Coveralls support to enable integration
with third-party testing and coverage statistics reporting services.
2015-10-01 17:17:13 -04:00
Peter Hamilton cd85d91a13 Merge pull request #94 from OpenKMIP/maint/reorg-server-code
Reorganizing the server code
2015-09-29 14:32:23 -04:00
Peter Hamilton a04a014a8a Reorganizing the server code
This change creates a new subpackage under services, server, which now
holds all of the software server related code. References to different
pieces of the server code base are updated accordingly.
2015-09-29 14:22:03 -04:00
Peter Hamilton fda71c6475 Merge pull request #85 from OpenKMIP/feat/update-enumeration
Updating support for the Enumeration primitive
2015-09-29 14:11:20 -04:00
Peter Hamilton 20dbad5055 Updating support for the Enumeration primitive
This change updates the Enumeration primitive, adding a fresh
implementation and documentation. An updated unit test suite for the
primitive is included. Numerous changes to Enumeration usage across the
library are also included to comply with the updated implementation.
2015-09-29 13:23:44 -04:00
Peter Hamilton 55b35b0353 Merge pull request #83 from OpenKMIP/feat/update-attribute-value-factory
Updating the AttributeValue factory
2015-09-29 13:11:08 -04:00
Peter Hamilton 2c166a68ea Merge pull request #80 from OpenKMIP/feat/update-interval
Updating support for the Interval primitive
2015-09-29 13:09:39 -04:00
Peter Hamilton a521f49dcd Merge pull request #91 from hadesto/dev/hadi/tests/attributes-namespace-tests
Added tests for testing Name attribute
2015-09-29 13:08:22 -04:00
Hadi Esiely ac6d0ae81c Added tests for testing Name attribute
Completes test coverage for the Name attribute
2015-09-28 13:05:41 -04:00
Hadi Esiely 8601166631 Adds bandit testing to tox profile
This patch adds bandit test support to the tox profile. It also includes an initial bandit profile set for testing.
2015-09-28 12:26:12 -04:00
Peter Hamilton 45c91b9c8d Merge pull request #79 from OpenKMIP/feat/update-date-time
Updating support for the DateTime primitive
2015-09-23 12:51:30 -04:00
Peter Hamilton e3075a1b04 Merge pull request #77 from OpenKMIP/feat/update-big-integer
Updating support for the BigInteger primitive
2015-09-23 10:59:36 -04:00
Peter Hamilton 686b929062 Merge pull request #93 from OpenKMIP/feat/update-version-handling
Updating version handling
2015-09-23 10:59:03 -04:00
Peter Hamilton 25ad7d3ab1 Updating version handling
This change updates how the library version number is dynamically
loaded. It removes the use of exec in favor of a regular expression.
2015-09-17 14:32:14 -04:00
Peter Hamilton 989e19c834 Merge pull request #88 from OpenKMIP/feat/update-readme
Updating README
2015-09-16 13:45:09 -04:00
Peter Hamilton 056c21cca0 Merge pull request #89 from OpenKMIP/maint/remove-server-script
Deleting broken server script
2015-09-16 13:44:46 -04:00
Peter Hamilton af971bea48 Merge pull request #90 from guoyr/requirements
Adding version requirements to requirements.txt
2015-09-09 15:13:26 -04:00
Robert Guo 0dfd7b5323 Adding version requirements to requirements.txt 2015-09-09 14:12:48 -04:00
Peter Hamilton c59f38dbed Deleting broken server script
This change removes an old and out-of-date script used to run the PyKMIP
software server.
2015-09-08 08:11:43 -04:00
Peter Hamilton a82154c6fb Updating README
The change updates the README to reflect new operations added to the
KMIPProxy and ProxyKmipClient.
2015-09-04 10:36:53 -04:00
Peter Hamilton 428633f175 Merge pull request #74 from OpenKMIP/feat/add-get-attribute-list-pie
Adding ProxyKmipClient support for the GetAttributeList operation
2015-09-04 10:27:10 -04:00
Peter Hamilton 3970c0f211 Adding ProxyKmipClient support for the GetAttributeList operation
This change adds support for the GetAttributeList operation to the
ProxyKmipClient. It updates the Pie client API and provides a demo
showing how to use the operation. All relevant test suites are updated
accordingly.
2015-09-04 10:01:39 -04:00
Peter Hamilton c2e6ffa048 Merge pull request #73 from OpenKMIP/feat/add-get-attribute-list-proxy
Adding KMIPProxy support for the GetAttributeList operation
2015-09-04 08:49:07 -04:00
Peter Hamilton a79e9d7f99 Updating support for the Interval primitive
This change updates the Interval primitive, adding a fresh
implementation and documentation. A new unit test suite for the
primitive is included.
2015-09-01 12:36:22 -04:00
Peter Hamilton 26e44a07e1 Updating support for the DateTime primitive
This change updates the DateTime primitive, adding documentation and
Python string operator support. A new unit test suite for the primitive
is included.
2015-08-31 12:19:03 -04:00
Peter Hamilton c763b69af1 Adding KMIPProxy support for the GetAttributeList operation
This change adds support for the GetAttributeList operation to the
KMIPProxy client. It adds a new result object for the operation along
with an integration test demonstrating how the operation can be used.
Client unit test cases are also included.
2015-08-31 12:06:49 -04:00
Peter Hamilton c21fe63b00 Merge pull request #86 from OpenKMIP/feat/update-config-file-support
Updating the set of supported configuration file locations
2015-08-31 11:03:42 -04:00
Peter Hamilton 3a4658d5d1 Updating the set of supported configuration file locations
This change adds support for multiple configuration file storage
locations, including the user's home directory and /etc. The preferred
configuration file name is now pykmip.conf. The original name,
kmipconfig.ini, will continue to be supported for legacy installations.
2015-08-28 15:59:05 -04:00
Peter Hamilton 89a6e21a06 Updating support for the BigInteger primitive
This change fixes various bugs with the original BigInteger
implementation, adding in a working version of the primitive. A full
unit test suite is included.
2015-08-27 09:00:00 -04:00
Peter Hamilton 9c7edd65d2 Merge pull request #76 from OpenKMIP/feat/update-long-integer
Updating support for the LongInteger primitive
2015-08-27 08:56:01 -04:00
Peter Hamilton b04e3ab3dc Updating support for the LongInteger primitive
This change updates the LongInteger primitive, improving class
documentation, adding standard Python operators, cleaning up the
original implementation, and expanding the corresponding unit test suite
to address the modifications.
2015-08-27 08:47:07 -04:00
Peter Hamilton f3c202cf3c Merge pull request #75 from OpenKMIP/maint/split-primitive-tests
Splitting primitive object test suites
2015-08-24 09:03:06 -04:00
Peter Hamilton 06c1afc91e Merge pull request #84 from OpenKMIP/maint/ignore-software-server-tests
Updating integration tests to ignore software server
2015-08-21 11:46:47 -04:00
Peter Hamilton 3ebc09670a Updating integration tests to ignore software server
This change adds a new pytest marker, ignore. It is used to silently
skip the software server integration test suite, which is now broken
from a recent ssl update. A pytest ini configuration file is also added
to register the new marker.
2015-08-20 09:13:20 -04:00
Peter Hamilton b0bab4b8bc Updating the AttributeValue factory
This change updates the AttributeValue factory, removing and
streamlining code. Support for several basic primitive attributes are
added in addition to a redesigned test suite for the factory.
2015-08-18 14:04:29 -04:00
Peter Hamilton 76a2f68f1f Splitting primitive object test suites
This change splits the original set of primitive object test suites into
separate modules. Minor refactoring to account for structure changes is
included.
2015-08-18 09:56:51 -04:00
Peter Hamilton 94646337c3 Merge pull request #72 from OpenKMIP/feat/add-get-attribute-list-payloads
Adding payloads for the GetAttributeList operation
2015-08-18 09:50:42 -04:00
Peter Hamilton a21f0b66c6 Adding payloads for the GetAttributeList operation
This change adds request and response payloads for the GetAttributeList
operation. It updates the payload factories to support these new objects
and updates and adds all associated or required test suites. A new
exception is also included that is thrown by objects attempting to parse
invalid KMIP encodings.
2015-08-17 12:15:25 -04:00
Peter Hamilton 35602c9b5c Merge pull request #82 from OpenKMIP/ver/prep-release-0-4-0
PyKMIP - Release 0.4.0
2015-08-14 09:44:30 -04:00
Peter Hamilton a9cb9b180e PyKMIP - Release 0.4.0
This update includes several new features and bug fixes:
* Add the official Pie API for a simpler KMIP interface
* Add the ProxyKmipClient implementation of the Pie API
* Add key, secret, and opaque objects to the Pie object hierarchy
* Add unit demos for all ProxyKmipClient operations
* Add complete unit and integration test suites for the Pie package
* Add KMIPProxy client support for the Activate and Revoke operations
* Add KMIPProxy client connection timeout support
* Add KMIPProxy integration tests for asymm. key/secret/opaque objects
* Add improved request error logging for the KMIPServer
* Update README with more information about the clients and Pie API
* Remove AUTHORS in favor of Git commit history
* Fix bug with dangling file handle when setting __version__
* Fix bug with dangling socket connection upon client destruction
2015-08-13 13:41:41 -04:00
Peter Hamilton 11c8f11699 Merge pull request #81 from OpenKMIP/feat/update-readme
Updating README
2015-08-13 09:05:11 -04:00
Peter Hamilton cfbba23b24 Updating README
This change updates the PyKMIP README, adding in additional information
on the KMIP clients and how to use them.
2015-08-13 07:29:50 -04:00
Peter Hamilton fe1c586035 Merge pull request #71 from OpenKMIP/bug/fix-server-log-pep8
Fixing pep8 errors for the KMIP server
2015-08-04 08:28:47 -04:00
Peter Hamilton 097bd38910 Fixing pep8 errors for the KMIP server
This change fixes pep8 whitespace errors in the KMIP server.
2015-08-03 10:52:27 -04:00
Peter Hamilton bb0487b5dc Merge pull request #69 from OpenKMIP/feat/add-pie-client-opaque
Adding opaque object examples for the ProxyKmipClient
2015-07-31 17:21:40 -04:00
Peter Hamilton f3abf96c11 Merge pull request #70 from felix-engelmann/master
KMIPServer serve log exceptions
2015-07-31 08:04:21 -04:00
Felix Engelmann 27f09f6b34 KMIPServer serve log exceptions
The Exception handler discards all errors, would be nice to log them
to the error logger before closing the connection.
2015-07-31 12:28:05 +02:00
Peter Hamilton e9f9726180 Merge pull request #65 from hadesto/dev/hadi/integration-tests/release/opaque-objects
Addition of Opaque Objects Integration Tests
2015-07-30 13:12:37 -04:00
Hadi Esiely 50cc8d9e8a Addition of Opaque Objects Integration Tests
Tests that opaque objects can be properly registered, retrieved, and destroyed.
2015-07-30 13:01:51 -04:00