SIGN IN SIGN UP

Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below.

0 0 1 Java
<?php
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
/*
Relies on PHPUnit to test the functionality in ./CreateInvalidation.php.
Related custom constants are defined in ./phpunit.xml.
Example PHPUnit run command from this file's parent directory:
./vendor/bin/phpunit --testsuite cloudfront-createinvalidation
*/
namespace Cloudfront;
use Aws\CloudFront\CloudFrontClient;
use Aws\MockHandler;
use Aws\Result;
use PHPUnit\Framework\TestCase;
class CreateInvalidationTest extends TestCase
{
public function testCreatesAnInvalidation()
{
require(__DIR__ . '/../CreateInvalidation.php');
$distributionId = CLOUDFRONT_DISTRIBUTION_ID;
$callerReference = CLOUDFRONT_CALLER_REFERENCE;
$paths = ['/*'];
$quantity = 1;
$mock = new MockHandler();
$mock->append(new Result(array(true)));
$cloudFrontClient = new CloudFrontClient([
'profile' => AWS_PROFILE,
'version' => CLOUDFRONT_VERSION,
'region' => AWS_REGION,
'handler' => $mock
]);
$result = createInvalidation(
$cloudFrontClient,
$distributionId,
$callerReference,
$paths,
$quantity
);
$this->assertStringContainsString(
'https://cloudfront.amazonaws.com/' .
CLOUDFRONT_VERSION . '/distribution/' .
CLOUDFRONT_DISTRIBUTION_ID . '/invalidation',
$result
);
}
}