| OLD | NEW |
| 1 <?php |
| 1 /* | 2 /* |
| 2 * Copyright 2014 Google Inc. All rights reserved. | 3 * |
| 4 * Copyright 2015-2016, Google Inc. |
| 5 * All rights reserved. |
| 3 * | 6 * |
| 4 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 8 * modification, are permitted provided that the following conditions are |
| 6 * met: | 9 * met: |
| 7 * | 10 * |
| 8 * * Redistributions of source code must retain the above copyright | 11 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 12 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 13 * * Redistributions in binary form must reproduce the above |
| 11 * copyright notice, this list of conditions and the following disclaimer | 14 * copyright notice, this list of conditions and the following disclaimer |
| 12 * in the documentation and/or other materials provided with the | 15 * in the documentation and/or other materials provided with the |
| 13 * distribution. | 16 * distribution. |
| 14 * * Neither the name of Google Inc. nor the names of its | 17 * * Neither the name of Google Inc. nor the names of its |
| 15 * contributors may be used to endorse or promote products derived from | 18 * contributors may be used to endorse or promote products derived from |
| 16 * this software without specific prior written permission. | 19 * this software without specific prior written permission. |
| 17 * | 20 * |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 * |
| 29 */ | 33 */ |
| 30 | 34 |
| 31 #ifndef WebDoublePoint_h | 35 class ServerTest extends PHPUnit_Framework_TestCase |
| 32 #define WebDoublePoint_h | 36 { |
| 33 | 37 public function setUp() |
| 34 #include "WebCommon.h" | |
| 35 | |
| 36 #if INSIDE_BLINK | |
| 37 #include "platform/geometry/DoublePoint.h" | |
| 38 #endif | |
| 39 | |
| 40 namespace blink { | |
| 41 | |
| 42 struct WebDoublePoint { | |
| 43 double x; | |
| 44 double y; | |
| 45 | |
| 46 WebDoublePoint() | |
| 47 : x(0.0) | |
| 48 , y(0.0) | |
| 49 { | 38 { |
| 50 } | 39 } |
| 51 | 40 |
| 52 WebDoublePoint(double x, double y) | 41 public function tearDown() |
| 53 : x(x) | |
| 54 , y(y) | |
| 55 { | 42 { |
| 56 } | 43 } |
| 57 | 44 |
| 58 #if INSIDE_BLINK | 45 /** |
| 59 WebDoublePoint(const DoublePoint& p) | 46 * @expectedException InvalidArgumentException |
| 60 : x(p.x()) | 47 */ |
| 61 , y(p.y()) | 48 public function testInvalidConstructor() |
| 62 { | 49 { |
| 50 $server = new Grpc\Server('invalid_host'); |
| 63 } | 51 } |
| 64 | 52 |
| 65 operator DoublePoint() const | 53 /** |
| 54 * @expectedException InvalidArgumentException |
| 55 */ |
| 56 public function testInvalidAddHttp2Port() |
| 66 { | 57 { |
| 67 return DoublePoint(x, y); | 58 $this->server = new Grpc\Server([]); |
| 59 $this->port = $this->server->addHttp2Port(['0.0.0.0:0']); |
| 68 } | 60 } |
| 69 #endif | |
| 70 | 61 |
| 71 }; | 62 /** |
| 63 * @expectedException InvalidArgumentException |
| 64 */ |
| 65 public function testInvalidAddSecureHttp2Port() |
| 66 { |
| 67 $this->server = new Grpc\Server([]); |
| 68 $this->port = $this->server->addSecureHttp2Port(['0.0.0.0:0']); |
| 69 } |
| 72 | 70 |
| 73 inline bool operator==(const WebDoublePoint& a, const WebDoublePoint& b) | 71 } |
| 74 { | |
| 75 return a.x == b.x && a.y == b.y; | |
| 76 } | |
| 77 | |
| 78 inline bool operator!=(const WebDoublePoint& a, const WebDoublePoint& b) | |
| 79 { | |
| 80 return !(a == b); | |
| 81 } | |
| 82 | |
| 83 } // namespace blink | |
| 84 | |
| 85 #endif | |
| OLD | NEW |