1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
|
# Copyright (c) 2017 The Johns Hopkins University/Applied Physics Laboratory
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import testtools
from kmip import enums
from kmip.core import utils
from kmip.core.messages import payloads
class TestCancelRequestPayload(testtools.TestCase):
"""
Test suite for the Cancel request payload.
"""
def setUp(self):
super(TestCancelRequestPayload, self).setUp()
# Encoding obtained from the KMIP 1.1 testing document, Section 10.1.
#
# This encoding matches the following set of values:
# Request Payload
# Asynchronous Correlation Value - 0x583B0036C1A2DD01
self.full_encoding = utils.BytearrayStream(
b'\x42\x00\x79\x01\x00\x00\x00\x10'
b'\x42\x00\x06\x08\x00\x00\x00\x08\x58\x3B\x00\x36\xC1\xA2\xDD\x01'
)
self.empty_encoding = utils.BytearrayStream(
b'\x42\x00\x79\x01\x00\x00\x00\x00'
)
def tearDown(self):
super(TestCancelRequestPayload, self).tearDown()
def test_init(self):
"""
Test that a Cancel request payload can be constructed with no
arguments.
"""
payload = payloads.CancelRequestPayload()
self.assertEqual(None, payload.asynchronous_correlation_value)
def test_init_with_args(self):
"""
Test that a Cancel request payload can be constructed with valid
values.
"""
payload = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\x01'
)
self.assertEqual(b'\x01', payload.asynchronous_correlation_value)
def test_invalid_asynchronous_correlation_value(self):
"""
Test that a TypeError is raised when an invalid value is used to set
the asynchronous correlation value of an Cancel request payload.
"""
kwargs = {'asynchronous_correlation_value': 0}
self.assertRaisesRegex(
TypeError,
"Asynchronous correlation value must be bytes.",
payloads.CancelRequestPayload,
**kwargs
)
payload = payloads.CancelRequestPayload()
args = (payload, 'asynchronous_correlation_value', 0)
self.assertRaisesRegex(
TypeError,
"Asynchronous correlation value must be bytes.",
setattr,
*args
)
def test_read(self):
"""
Test that a Cancel request payload can be read from a data stream.
"""
payload = payloads.CancelRequestPayload()
self.assertEqual(None, payload.asynchronous_correlation_value)
payload.read(self.full_encoding)
self.assertEqual(
b'\x58\x3B\x00\x36\xC1\xA2\xDD\x01',
payload.asynchronous_correlation_value
)
def test_read_empty(self):
"""
Test that an Cancel request payload can be read from an empty data
stream.
"""
payload = payloads.CancelRequestPayload()
self.assertEqual(None, payload.asynchronous_correlation_value)
payload.read(self.empty_encoding)
self.assertEqual(None, payload.asynchronous_correlation_value)
def test_write(self):
"""
Test that a Cancel request payload can be written to a data stream.
"""
payload = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\x58\x3B\x00\x36\xC1\xA2\xDD\x01'
)
stream = utils.BytearrayStream()
payload.write(stream)
self.assertEqual(len(self.full_encoding), len(stream))
self.assertEqual(str(self.full_encoding), str(stream))
def test_write_empty(self):
"""
Test that an empty Cancel request payload can be written to a data
stream.
"""
payload = payloads.CancelRequestPayload()
stream = utils.BytearrayStream()
payload.write(stream)
self.assertEqual(len(self.empty_encoding), len(stream))
self.assertEqual(str(self.empty_encoding), str(stream))
def test_equal_on_equal(self):
"""
Test that the equality operator returns True when comparing two Cancel
request payloads with the same data.
"""
a = payloads.CancelRequestPayload()
b = payloads.CancelRequestPayload()
self.assertTrue(a == b)
self.assertTrue(b == a)
a = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\x49\xa1\xca\x88'
)
b = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\x49\xa1\xca\x88'
)
self.assertTrue(a == b)
self.assertTrue(b == a)
def test_equal_on_not_equal_asynchronous_correlation_value(self):
"""
Test that the equality operator returns False when comparing two Cancel
request payloads with different asynchronous correlation values.
"""
a = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\xaa'
)
b = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\xbb'
)
self.assertFalse(a == b)
self.assertFalse(b == a)
def test_equal_on_type_mismatch(self):
"""
Test that the equality operator returns False when comparing two Cancel
request payloads with different types.
"""
a = payloads.CancelRequestPayload()
b = 'invalid'
self.assertFalse(a == b)
self.assertFalse(b == a)
def test_not_equal_on_equal(self):
"""
Test that the inequality operator returns False when comparing two
Cancel request payloads with the same data.
"""
a = payloads.CancelRequestPayload()
b = payloads.CancelRequestPayload()
self.assertFalse(a != b)
self.assertFalse(b != a)
a = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\x49\xa1\xca\x88'
)
b = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\x49\xa1\xca\x88'
)
self.assertFalse(a != b)
self.assertFalse(b != a)
def test_not_equal_on_not_equal_asynchronous_correlation_value(self):
"""
Test that the inequality operator returns True when comparing two
Cancel request payloads with different asynchronous correlation values.
"""
a = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\xaa'
)
b = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\xbb'
)
self.assertTrue(a != b)
self.assertTrue(b != a)
def test_not_equal_on_type_mismatch(self):
"""
Test that the inequality operator returns True when comparing two
Cancel request payloads with different types.
"""
a = payloads.CancelRequestPayload()
b = 'invalid'
self.assertTrue(a != b)
self.assertTrue(b != a)
def test_repr(self):
"""
Test that repr can be applied to a Cancel request payload.
"""
payload = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\xaa'
)
expected = (
"CancelRequestPayload("
"asynchronous_correlation_value=" + str(b'\xaa') + ")"
)
observed = repr(payload)
self.assertEqual(expected, observed)
def test_str(self):
"""
Test that str can be applied to a Cancel request payload.
"""
payload = payloads.CancelRequestPayload(
asynchronous_correlation_value=b'\xaa'
)
expected = str({
'asynchronous_correlation_value': b'\xaa'
})
observed = str(payload)
self.assertEqual(expected, observed)
class TestCancelResponsePayload(testtools.TestCase):
"""
Test suite for the Cancel response payload.
"""
def setUp(self):
super(TestCancelResponsePayload, self).setUp()
# Encoding obtained from the KMIP 1.1 testing document, Section 10.1.
#
# This encoding matches the following set of values:
# Response Payload
# Asynchronous Correlation Value - 0x583B0036C1A2DD01
# Cancellation Result - 1 (Canceled)
self.full_encoding = utils.BytearrayStream(
b'\x42\x00\x7C\x01\x00\x00\x00\x20'
b'\x42\x00\x06\x08\x00\x00\x00\x08\x58\x3B\x00\x36\xC1\xA2\xDD\x01'
b'\x42\x00\x12\x05\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x00'
)
self.empty_encoding = utils.BytearrayStream(
b'\x42\x00\x7C\x01\x00\x00\x00\x00'
)
def tearDown(self):
super(TestCancelResponsePayload, self).tearDown()
def test_init(self):
"""
Test that a Cancel response payload can be constructed with no
arguments.
"""
payload = payloads.CancelRequestPayload()
self.assertEqual(None, payload.asynchronous_correlation_value)
def test_init_with_args(self):
"""
Test that a Cancel response payload can be constructed with valid
values.
"""
payload = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\x01',
cancellation_result=enums.CancellationResult.FAILED
)
self.assertEqual(b'\x01', payload.asynchronous_correlation_value)
self.assertEqual(
enums.CancellationResult.FAILED,
payload.cancellation_result
)
def test_invalid_asynchronous_correlation_value(self):
"""
Test that a TypeError is raised when an invalid value is used to set
the asynchronous correlation value of an Cancel response payload.
"""
kwargs = {'asynchronous_correlation_value': 0}
self.assertRaisesRegex(
TypeError,
"Asynchronous correlation value must be bytes.",
payloads.CancelResponsePayload,
**kwargs
)
payload = payloads.CancelResponsePayload()
args = (payload, 'asynchronous_correlation_value', 0)
self.assertRaisesRegex(
TypeError,
"Asynchronous correlation value must be bytes.",
setattr,
*args
)
def test_invalid_cancellation_result(self):
"""
Test that a TypeError is raised when an invalid value is used to set
the cancellation result of an Cancel response payload.
"""
kwargs = {'cancellation_result': 'invalid'}
self.assertRaisesRegex(
TypeError,
"Cancellation result must be a CancellationResult enumeration.",
payloads.CancelResponsePayload,
**kwargs
)
payload = payloads.CancelResponsePayload()
args = (payload, 'cancellation_result', 'invalid')
self.assertRaisesRegex(
TypeError,
"Cancellation result must be a CancellationResult enumeration.",
setattr,
*args
)
def test_read(self):
"""
Test that a Cancel response payload can be read from a data stream.
"""
payload = payloads.CancelResponsePayload()
self.assertEqual(None, payload.asynchronous_correlation_value)
self.assertEqual(None, payload.cancellation_result)
payload.read(self.full_encoding)
self.assertEqual(
b'\x58\x3B\x00\x36\xC1\xA2\xDD\x01',
payload.asynchronous_correlation_value
)
self.assertEqual(
enums.CancellationResult.CANCELED,
payload.cancellation_result
)
def test_read_empty(self):
"""
Test that an Cancel response payload can be read from an empty data
stream.
"""
payload = payloads.CancelResponsePayload()
self.assertEqual(None, payload.asynchronous_correlation_value)
self.assertEqual(None, payload.cancellation_result)
payload.read(self.empty_encoding)
self.assertEqual(None, payload.asynchronous_correlation_value)
self.assertEqual(None, payload.cancellation_result)
def test_write(self):
"""
Test that a Cancel response payload can be written to a data stream.
"""
payload = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\x58\x3B\x00\x36\xC1\xA2\xDD\x01',
cancellation_result=enums.CancellationResult.CANCELED
)
stream = utils.BytearrayStream()
payload.write(stream)
self.assertEqual(len(self.full_encoding), len(stream))
self.assertEqual(str(self.full_encoding), str(stream))
def test_write_empty(self):
"""
Test that an empty Cancel response payload can be written to a data
stream.
"""
payload = payloads.CancelResponsePayload()
stream = utils.BytearrayStream()
payload.write(stream)
self.assertEqual(len(self.empty_encoding), len(stream))
self.assertEqual(str(self.empty_encoding), str(stream))
def test_equal_on_equal(self):
"""
Test that the equality operator returns True when comparing two Cancel
response payloads with the same data.
"""
a = payloads.CancelResponsePayload()
b = payloads.CancelResponsePayload()
self.assertTrue(a == b)
self.assertTrue(b == a)
a = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\x49\xa1\xca\x88',
cancellation_result=enums.CancellationResult.COMPLETED
)
b = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\x49\xa1\xca\x88',
cancellation_result=enums.CancellationResult.COMPLETED
)
self.assertTrue(a == b)
self.assertTrue(b == a)
def test_equal_on_not_equal_asynchronous_correlation_value(self):
"""
Test that the equality operator returns False when comparing two Cancel
response payloads with different asynchronous correlation values.
"""
a = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\xaa'
)
b = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\xbb'
)
self.assertFalse(a == b)
self.assertFalse(b == a)
def test_equal_on_not_equal_cancellation_result(self):
"""
Test that the equality operator returns False when comparing two Cancel
response payloads with different cancellation results.
"""
a = payloads.CancelResponsePayload(
cancellation_result=enums.CancellationResult.FAILED
)
b = payloads.CancelResponsePayload(
cancellation_result=enums.CancellationResult.COMPLETED
)
self.assertFalse(a == b)
self.assertFalse(b == a)
def test_equal_on_type_mismatch(self):
"""
Test that the equality operator returns False when comparing two Cancel
response payloads with different types.
"""
a = payloads.CancelResponsePayload()
b = 'invalid'
self.assertFalse(a == b)
self.assertFalse(b == a)
def test_not_equal_on_equal(self):
"""
Test that the inequality operator returns False when comparing two
Cancel response payloads with the same data.
"""
a = payloads.CancelResponsePayload()
b = payloads.CancelResponsePayload()
self.assertFalse(a != b)
self.assertFalse(b != a)
a = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\x49\xa1\xca\x88',
cancellation_result=enums.CancellationResult.COMPLETED
)
b = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\x49\xa1\xca\x88',
cancellation_result=enums.CancellationResult.COMPLETED
)
self.assertFalse(a != b)
self.assertFalse(b != a)
def test_not_equal_on_not_equal_asynchronous_correlation_value(self):
"""
Test that the inequality operator returns True when comparing two
Cancel response payloads with different asynchronous correlation
values.
"""
a = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\xaa'
)
b = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\xbb'
)
self.assertTrue(a != b)
self.assertTrue(b != a)
def test_not_equal_on_not_equal_cancellation_result(self):
"""
Test that the inequality operator returns True when comparing two
Cancel response payloads with different cancellation results.
"""
a = payloads.CancelResponsePayload(
cancellation_result=enums.CancellationResult.FAILED
)
b = payloads.CancelResponsePayload(
cancellation_result=enums.CancellationResult.COMPLETED
)
self.assertTrue(a != b)
self.assertTrue(b != a)
def test_not_equal_on_type_mismatch(self):
"""
Test that the inequality operator returns True when comparing two
Cancel response payloads with different types.
"""
a = payloads.CancelResponsePayload()
b = 'invalid'
self.assertTrue(a != b)
self.assertTrue(b != a)
def test_repr(self):
"""
Test that repr can be applied to a Cancel response payload.
"""
payload = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\xaa',
cancellation_result=enums.CancellationResult.UNABLE_TO_CANCEL
)
expected = (
"CancelResponsePayload("
"asynchronous_correlation_value=" + str(b'\xaa') + ", "
"cancellation_result=" + str(
enums.CancellationResult.UNABLE_TO_CANCEL
) + ")"
)
observed = repr(payload)
self.assertEqual(expected, observed)
def test_str(self):
"""
Test that str can be applied to a Cancel response payload.
"""
payload = payloads.CancelResponsePayload(
asynchronous_correlation_value=b'\xaa',
cancellation_result=enums.CancellationResult.UNAVAILABLE
)
expected = str({
'asynchronous_correlation_value': b'\xaa',
'cancellation_result': enums.CancellationResult.UNAVAILABLE
})
observed = str(payload)
self.assertEqual(expected, observed)
|