Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13992900
D8460.id20069.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D8460.id20069.diff
View Options
diff --git a/src/unit/engine/phutil/ArcanistPhutilTestCase.php b/src/unit/engine/phutil/ArcanistPhutilTestCase.php
--- a/src/unit/engine/phutil/ArcanistPhutilTestCase.php
+++ b/src/unit/engine/phutil/ArcanistPhutilTestCase.php
@@ -25,6 +25,65 @@
/* -( Making Test Assertions )--------------------------------------------- */
+ /**
+ * Assert that a value is false. The test fails if it is not.
+ *
+ * @param wild The empirically derived value, generated by executing the
+ * test.
+ * @param string A human-readable description of what these values represent,
+ * and particularly of what a discrepancy means.
+ *
+ * @return void
+ * @task assert
+ */
+ final protected function assertFalse($result, $message = null) {
+ if ($result === false) {
+ $this->assertions++;
+ return;
+ }
+
+ $result = PhutilReadableSerializer::printableValue($result);
+ $caller = self::getCallerInfo();
+
+ $output = "Assertion failed at line {$caller['line']} in {$caller['file']}";
+
+ if ($message) {
+ $output .= ": {$message}";
+ }
+
+ $this->failTest($output);
+ throw new ArcanistPhutilTestTerminatedException($output);
+ }
+
+ /**
+ * Assert that a value is true. The test fails if it is not.
+ *
+ * @param wild The empirically derived value, generated by executing the
+ * test.
+ * @param string A human-readable description of what these values represent,
+ * and particularly of what a discrepancy means.
+ *
+ * @return void
+ * @task assert
+ */
+ final protected function assertTrue($result, $message = null) {
+ if ($result === true) {
+ $this->assertions++;
+ return;
+ }
+
+ $result = PhutilReadableSerializer::printableValue($result);
+ $caller = self::getCallerInfo();
+
+ $output = "Assertion failed at line {$caller['line']} in {$caller['file']}";
+
+ if ($message) {
+ $output .= ": {$message}";
+ }
+
+ $this->failTest($output);
+ throw new ArcanistPhutilTestTerminatedException($output);
+ }
/**
* Assert that two values are equal. The test fails if they are not.
@@ -51,18 +110,9 @@
$expect = PhutilReadableSerializer::printableValue($expect);
$result = PhutilReadableSerializer::printableValue($result);
+ $caller = self::getCallerInfo();
- foreach (debug_backtrace() as $location) {
- if (!preg_match('/^assert[A-Z]/', idx($location, 'function'))) {
- break;
- }
- $where = $location;
- }
-
- $line = idx($where, 'line');
- $file = basename(idx($where, 'file'));
-
- $output = "Assertion failed at line {$line} in {$file}";
+ $output = "Assertion failed at line {$caller['line']} in {$caller['file']}";
if ($message) {
$output .= ": {$message}";
@@ -582,4 +632,37 @@
return $this;
}
+ /**
+ * Returns info about the caller function.
+ *
+ * @return map
+ */
+ private static final function getCallerInfo() {
+ $callee = array();
+ $caller = array();
+ $seen = false;
+
+ foreach (array_slice(debug_backtrace(), 1) as $location) {
+ $function = idx($location, 'function');
+
+ if (!$seen && preg_match('/^assert[A-Z]/', $function)) {
+ $seen = true;
+ $caller = $location;
+ } else if ($seen && !preg_match('/^assert[A-Z]/', $function)) {
+ $callee = $location;
+ break;
+ }
+ }
+
+ return array(
+ 'file' => basename(idx($caller, 'file')),
+ 'line' => idx($caller, 'line'),
+ 'function' => idx($callee, 'function'),
+ 'class' => idx($callee, 'class'),
+ 'object' => idx($caller, 'object'),
+ 'type' => idx($callee, 'type'),
+ 'args' => idx($caller, 'args'),
+ );
+ }
+
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Oct 23, 7:35 PM (3 w, 8 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6737149
Default Alt Text
D8460.id20069.diff (3 KB)
Attached To
Mode
D8460: Added some additional assertion methods.
Attached
Detach File
Event Timeline
Log In to Comment