Skip to content

Commit

Permalink
Add element xenc:KA-nonce
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Nov 26, 2024
1 parent 6e13445 commit 271d943
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/XML/xenc/KANonce.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

declare(strict_types=1);

namespace SimpleSAML\XMLSecurity\XML\xenc;

use SimpleSAML\XML\Base64ElementTrait;

/**
* Class representing a xenc:KA-Nonce element.
*
* @package simplesaml/xml-security
*/
final class KANonce extends AbstractXencElement
{
use Base64ElementTrait;

/** @var string */
public const LOCALNAME = 'KA-Nonce';


/**
* @param string $content
*/
public function __construct(string $content)
{
$this->setContent($content);
}
}
65 changes: 65 additions & 0 deletions tests/XML/xenc/KANonceTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<?php

declare(strict_types=1);

namespace SimpleSAML\XMLSecurity\Test\XML\xenc;

use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\TestCase;
use SimpleSAML\Assert\AssertionFailedException;
use SimpleSAML\XML\DOMDocumentFactory;
use SimpleSAML\XML\TestUtils\SerializableElementTestTrait;
use SimpleSAML\XMLSecurity\Test\XML\XMLDumper;
use SimpleSAML\XMLSecurity\XML\xenc\AbstractXencElement;
use SimpleSAML\XMLSecurity\XML\xenc\KANonce;

use function dirname;
use function strval;

/**
* Class \SimpleSAML\XMLSecurity\Test\XML\xenc\KANonceTest
*
* @covers \SimpleSAML\XMLSecurity\XML\xenc\AbstractXencElement
* @covers \SimpleSAML\XMLSecurity\XML\xenc\KANonce
*
* @package simplesamlphp/xml-security
*/
#[CoversClass(AbstractXencElement::class)]
#[CoversClass(KANonce::class)]
final class KANonceTest extends TestCase
{
use SerializableElementTestTrait;

/**
*/
public static function setUpBeforeClass(): void
{
self::$testedClass = KANonce::class;

self::$xmlRepresentation = DOMDocumentFactory::fromFile(
dirname(__FILE__, 3) . '/resources/xml/xenc_KA-Nonce.xml',
);
}


/**
*/
public function testMarshalling(): void
{
$kaNonce = new KANonce('/CTj03d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=');

$this->assertEquals(
XMLDumper::dumpDOMDocumentXMLWithBase64Content(self::$xmlRepresentation),
strval($kaNonce),
);
}


/**
*/
public function testMarshallingNotBase64(): void
{
$this->expectException(AssertionFailedException::class);
new KANonce('/CTj3d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=');
}
}
1 change: 1 addition & 0 deletions tests/resources/xml/xenc_KA-Nonce.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<xenc:KA-Nonce xmlns:xenc="http://www.w3.org/2001/04/xmlenc#">/CTj03d1DB5e2t7CTo9BEzCf5S9NRzwnBgZRlm32REI=</xenc:KA-Nonce>

0 comments on commit 271d943

Please sign in to comment.