!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/qr.picotech.app/public_html_v3_3/backup/vendor/google/gax/tests/Tests/Unit/   drwxr-xr-x
Free 23.6 GB of 117.98 GB (20%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     OperationResponseTest.php (8.82 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * Copyright 2016 Google LLC
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 *     * Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following disclaimer
 * in the documentation and/or other materials provided with the
 * distribution.
 *     * Neither the name of Google Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from
 * this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
namespace Google\ApiCore\Tests\Unit;

use 
Google\ApiCore\LongRunning\Gapic\OperationsGapicClient;
use 
Google\ApiCore\LongRunning\OperationsClient;
use 
Google\ApiCore\OperationResponse;
use 
Google\LongRunning\Operation;
use 
Google\Protobuf\Any;
use 
PHPUnit\Framework\TestCase;

class 
OperationResponseTest extends TestCase
{
    use 
TestTrait;

    public function 
testBasic()
    {
        
$opName 'operations/opname';
        
$opClient $this->createOperationsClient();
        
$op = new OperationResponse($opName$opClient);

        
$this->assertSame($opName$op->getName());
        
$this->assertSame($opClient$op->getOperationsClient());
    }

    public function 
testWithoutResponse()
    {
        
$opName 'operations/opname';
        
$opClient $this->createOperationsClient();
        
$op = new OperationResponse($opName$opClient);

        
$this->assertNull($op->getLastProtoResponse());
        
$this->assertFalse($op->isDone());
        
$this->assertNull($op->getResult());
        
$this->assertNull($op->getError());
        
$this->assertNull($op->getMetadata());
        
$this->assertFalse($op->operationSucceeded());
        
$this->assertFalse($op->operationFailed());
        
$this->assertEquals([
            
'operationReturnType' => null,
            
'metadataReturnType' => null,
            
'initialPollDelayMillis' => 1000.0,
            
'pollDelayMultiplier' => 2.0,
            
'maxPollDelayMillis' => 60000.0,
            
'totalPollTimeoutMillis' => 0.0,
        ], 
$op->getDescriptorOptions());
    }

    public function 
testWithResponse()
    {
        
$opName 'operations/opname';
        
$opClient $this->createOperationsClient();
        
$protoResponse = new Operation();
        
$op = new OperationResponse($opName$opClient, [
            
'lastProtoResponse' => $protoResponse,
        ]);

        
$this->assertSame($protoResponse$op->getLastProtoResponse());
        
$this->assertFalse($op->isDone());
        
$this->assertNull($op->getResult());
        
$this->assertNull($op->getError());
        
$this->assertNull($op->getMetadata());
        
$this->assertFalse($op->operationSucceeded());
        
$this->assertFalse($op->operationFailed());
        
$this->assertEquals([
            
'operationReturnType' => null,
            
'metadataReturnType' => null,
            
'initialPollDelayMillis' => 1000.0,
            
'pollDelayMultiplier' => 2.0,
            
'maxPollDelayMillis' => 60000.0,
            
'totalPollTimeoutMillis' => 0.0,
        ], 
$op->getDescriptorOptions());

        
$response $this->createAny($this->createStatus(0"response"));
        
$error $this->createStatus(2"error");
        
$metadata $this->createAny($this->createStatus(0"metadata"));

        
$protoResponse->setDone(true);
        
$protoResponse->setResponse($response);
        
$protoResponse->setMetadata($metadata);
        
$this->assertTrue($op->isDone());
        
$this->assertSame($response$op->getResult());
        
$this->assertSame($metadata$op->getMetadata());
        
$this->assertTrue($op->operationSucceeded());
        
$this->assertFalse($op->operationFailed());

        
$protoResponse->setError($error);
        
$this->assertNull($op->getResult());
        
$this->assertSame($error$op->getError());
        
$this->assertFalse($op->operationSucceeded());
        
$this->assertTrue($op->operationFailed());
    }

    public function 
testWithOptions()
    {
        
$opName 'operations/opname';
        
$opClient $this->createOperationsClient();
        
$protoResponse = new Operation();
        
$op = new OperationResponse($opName$opClient, [
            
'operationReturnType' => '\Google\Rpc\Status',
            
'metadataReturnType' => '\Google\Protobuf\Any',
            
'lastProtoResponse' => $protoResponse,
        ]);

        
$this->assertSame($protoResponse$op->getLastProtoResponse());
        
$this->assertFalse($op->isDone());
        
$this->assertNull($op->getResult());
        
$this->assertNull($op->getError());
        
$this->assertNull($op->getMetadata());
        
$this->assertEquals([
            
'operationReturnType' => '\Google\Rpc\Status',
            
'metadataReturnType' => '\Google\Protobuf\Any',
            
'initialPollDelayMillis' => 1000.0,
            
'pollDelayMultiplier' => 2.0,
            
'maxPollDelayMillis' => 60000.0,
            
'totalPollTimeoutMillis' => 0.0,

        ], 
$op->getDescriptorOptions());

        
$innerResponse $this->createStatus(0"response");
        
$innerMetadata = new Any();
        
$innerMetadata->setValue("metadata");

        
$response $this->createAny($innerResponse);
        
$metadata $this->createAny($innerMetadata);

        
$protoResponse->setDone(true);
        
$protoResponse->setResponse($response);
        
$protoResponse->setMetadata($metadata);
        
$this->assertTrue($op->isDone());
        
$this->assertEquals($innerResponse$op->getResult());
        
$this->assertEquals($innerMetadata$op->getMetadata());
    }

    
/**
     * @dataProvider pollingDataProvider
     */
    
public function testPolling($op$pollArgs$expectedSleeps$expectedComplete)
    {
        
$op->pollUntilComplete($pollArgs);

        
$this->assertEquals($op->isDone(), $expectedComplete);
        
$this->assertEquals($op->getSleeps(), $expectedSleeps);
    }

    public function 
pollingDataProvider()
    {
        
$pollingArgs = [
            
'initialPollDelayMillis' => 10.0,
            
'pollDelayMultiplier' => 3.0,
            
'maxPollDelayMillis' => 50.0,
            
'totalPollTimeoutMillis' => 100.0,
        ];
        return [
            [
$this->createOperationResponse([], 3), [], [1000.02000.04000.0], true], // Defaults
            
[$this->createOperationResponse([], 3), $pollingArgs, [103050], true], // Args to pollUntilComplete
            
[$this->createOperationResponse($pollingArgs3), [], [103050], true], // Args to constructor
            
[$this->createOperationResponse([], 4), [
                
'totalPollTimeoutMillis' => 80.0,
            ] + 
$pollingArgs, [103050], false], // Polling timeout
        
];
    }

    private function 
createOperationResponse($options$reloadCount)
    {
        
$opName 'operations/opname';
        return new 
FakeOperationResponse($opName$this->createOperationClient($reloadCount), $options);
    }

    private function 
createOperationClient($reloadCount)
    {
        
$opClient $this->getMock(
            
OperationsClient::class,
            [
'getOperation'],
            [[
                
'apiEndpoint' => '',
                
'scopes' => [],
            ]]
        );
        for (
$i 0$i $reloadCount 1$i++) {
            
$opClient->expects($this->at($i))
                ->
method('getOperation')
                ->
willReturn(new Operation());
        }
        
$opClient->expects($this->at($reloadCount 1))
            ->
method('getOperation')
            ->
willReturn((new Operation())->setDone(true));
        return 
$opClient;
    }
}

class 
FakeOperationResponse extends OperationResponse
{
    private 
$currentTime 0;
    public function 
getSleeps()
    {
        return 
$this->sleeps;
    }

    public function 
sleepMillis($millis)
    {
        
$this->currentTime += $millis;
        
$this->sleeps[] = $millis;
    }

    public function 
setTimes($times)
    {
        
$this->times $times;
    }

    public function 
getCurrentTimeMillis()
    {
        return 
$this->currentTime;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0079 ]--