Skip to content

Commit

Permalink
Updated version to 4.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonmantank committed Jul 2, 2021
1 parent f81aedf commit 1cdbe85
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion src/OpenTok/Util/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

// TODO: build this dynamically
/** @internal */
define('OPENTOK_SDK_VERSION', '4.9.0');
define('OPENTOK_SDK_VERSION', '4.9.1');
/** @internal */
define('OPENTOK_SDK_USER_AGENT', 'OpenTok-PHP-SDK/' . OPENTOK_SDK_VERSION);

Expand Down
4 changes: 2 additions & 2 deletions tests/OpenTokTest/ArchiveTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public function testStopsArchive()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

// TODO: test the properties of the actual archive object
$this->assertEquals('stopped', $this->archive->status);
Expand Down Expand Up @@ -195,7 +195,7 @@ public function testDeletesArchive()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertTrue($success);
// TODO: assert that all properties of the archive object were cleared
Expand Down
62 changes: 31 additions & 31 deletions tests/OpenTokTest/OpenTokTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function testCreatesDefaultSession()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$p2p_preference = $this->getPostField($request, 'p2p.preference');
$this->assertEquals('enabled', $p2p_preference);
Expand Down Expand Up @@ -195,7 +195,7 @@ public function testCreatesMediaRoutedAndLocationSession()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$location = $this->getPostField($request, 'location');
$this->assertEquals('12.34.56.78', $location);
Expand Down Expand Up @@ -243,7 +243,7 @@ public function testCreatesMediaRelayedSession()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$p2p_preference = $this->getPostField($request, 'p2p.preference');
$this->assertEquals('enabled', $p2p_preference);
Expand Down Expand Up @@ -288,7 +288,7 @@ public function testCreatesAutoArchivedSession()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$archiveMode = $this->getPostField($request, 'archiveMode');
$this->assertEquals('always', $archiveMode);
Expand Down Expand Up @@ -526,7 +526,7 @@ public function testStartsArchive()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\Archive', $archive);
$this->assertEquals(0, $archive->duration);
Expand Down Expand Up @@ -576,7 +576,7 @@ public function testStartsArchiveNamed()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$body = json_decode($request->getBody());
$this->assertEquals($sessionId, $body->sessionId);
Expand Down Expand Up @@ -627,7 +627,7 @@ public function testStartsArchiveNamedDeprecated()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$body = json_decode($request->getBody());
$this->assertEquals($sessionId, $body->sessionId);
Expand Down Expand Up @@ -674,7 +674,7 @@ public function testStartsArchiveAudioOnly()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$body = json_decode($request->getBody());
$this->assertEquals($sessionId, $body->sessionId);
Expand Down Expand Up @@ -724,7 +724,7 @@ public function testStartsArchiveIndividualOutput()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$body = json_decode($request->getBody());
$this->assertEquals($sessionId, $body->sessionId);
Expand Down Expand Up @@ -773,7 +773,7 @@ public function testStartsArchiveResolutionSD()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$body = json_decode($request->getBody());
$this->assertEquals($sessionId, $body->sessionId);
Expand Down Expand Up @@ -821,7 +821,7 @@ public function testStartsArchiveResolutionHD()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$body = json_decode($request->getBody());
$this->assertEquals($sessionId, $body->sessionId);
Expand Down Expand Up @@ -865,7 +865,7 @@ public function testStopsArchive()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\Archive', $archive);
// TODO: test the properties of the actual archive object
Expand Down Expand Up @@ -904,7 +904,7 @@ public function testGetsArchive()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\Archive', $archive);
// TODO: test the properties of the actual archive object
Expand Down Expand Up @@ -941,7 +941,7 @@ public function testDeletesArchive()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertTrue($success);
// TODO: test the properties of the actual archive object
Expand Down Expand Up @@ -976,7 +976,7 @@ public function testListsArchives()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\ArchiveList', $archiveList);
// TODO: test the properties of the actual archiveList object and its contained archive
Expand Down Expand Up @@ -1012,7 +1012,7 @@ public function testListsArchivesWithOffsetAndCount()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\ArchiveList', $archiveList);
$this->assertEquals(1, $archiveList->totalCount());
Expand Down Expand Up @@ -1053,7 +1053,7 @@ public function testListsArchivesWithSessionId()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\ArchiveList', $archiveList);
$this->assertEquals(2, $archiveList->totalCount());
Expand Down Expand Up @@ -1137,7 +1137,7 @@ public function testForceDisconnect()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertTrue($success);
}
Expand Down Expand Up @@ -1198,7 +1198,7 @@ public function testStartsBroadcast()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\Broadcast', $broadcast);
$this->assertIsString($broadcast->id);
Expand Down Expand Up @@ -1254,7 +1254,7 @@ public function testStartBroadcastWithOptions()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\Broadcast', $broadcast);
$this->assertIsString($broadcast->id);
Expand Down Expand Up @@ -1301,7 +1301,7 @@ public function testStopsBroadcast()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\Broadcast', $broadcast);
$this->assertTrue($broadcast->isStopped);
Expand Down Expand Up @@ -1338,7 +1338,7 @@ public function testGetsBroadcast()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\Broadcast', $broadcast);
}
Expand Down Expand Up @@ -1382,7 +1382,7 @@ public function testUpdatesBroadcastLayoutWithPredefined()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);
}

public function testUpdatesBroadcastLayoutWithCustom()
Expand Down Expand Up @@ -1428,7 +1428,7 @@ public function testUpdatesBroadcastLayoutWithCustom()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);
}

public function testUpdatesStreamLayoutClassList()
Expand Down Expand Up @@ -1473,7 +1473,7 @@ public function testUpdatesStreamLayoutClassList()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);
}

public function testGetStream()
Expand Down Expand Up @@ -1512,7 +1512,7 @@ public function testGetStream()

$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);
}

public function testSipCall()
Expand Down Expand Up @@ -1789,7 +1789,7 @@ public function testSignalData()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$body = json_decode($request->getBody());
$this->assertEquals('apple', $body->data);
Expand Down Expand Up @@ -1831,7 +1831,7 @@ public function testSignalWithConnectionId()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$body = json_decode($request->getBody());
$this->assertEquals('random message', $body->data);
Expand Down Expand Up @@ -1946,7 +1946,7 @@ public function testListStreams()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);

$this->assertInstanceOf('OpenTok\StreamList', $streamList);

Expand Down Expand Up @@ -1990,7 +1990,7 @@ public function testsSetArchiveLayoutWithPredefined()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);
}

public function testsSetArchiveLayoutWithCustom()
Expand Down Expand Up @@ -2036,7 +2036,7 @@ public function testsSetArchiveLayoutWithCustom()
// TODO: test the dynamically built User Agent string
$userAgent = $request->getHeaderLine('User-Agent');
$this->assertNotEmpty($userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.0', $userAgent);
$this->assertStringStartsWith('OpenTok-PHP-SDK/4.9.1', $userAgent);
}

/**
Expand Down

0 comments on commit 1cdbe85

Please sign in to comment.