Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14388255
D20268.id48398.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D20268.id48398.diff
View Options
diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -499,6 +499,7 @@
'array_mergev' => 'utils/utils.php',
'array_select_keys' => 'utils/utils.php',
'assert_instances_of' => 'utils/utils.php',
+ 'assert_same_keys' => 'utils/utils.php',
'assert_stringlike' => 'utils/utils.php',
'coalesce' => 'utils/utils.php',
'csprintf' => 'xsprintf/csprintf.php',
diff --git a/src/utils/__tests__/PhutilUtilsTestCase.php b/src/utils/__tests__/PhutilUtilsTestCase.php
--- a/src/utils/__tests__/PhutilUtilsTestCase.php
+++ b/src/utils/__tests__/PhutilUtilsTestCase.php
@@ -231,6 +231,37 @@
'InvalidArgumentException');
}
+ public function testAssertSameKeys() {
+ $cases = array(
+ array(true, array(), array()),
+ array(true, array(0), array(1)),
+
+ array(false, array(0), array()),
+ array(false, array(), array(0)),
+
+ array(false, array('a' => 1), array('b' => 1)),
+
+ // Make sure "null" values survive "isset()" tests.
+ array(true, array('a' => 1), array('a' => null)),
+
+ // Key order should not matter.
+ array(true, array('a' => 1, 'b' => 1), array('b' => 1, 'a' => 1)),
+ );
+
+ foreach ($cases as $case) {
+ list($same_keys, $expect, $input) = $case;
+
+ $caught = null;
+ try {
+ assert_same_keys($expect, $input);
+ } catch (InvalidArgumentException $ex) {
+ $caught = $ex;
+ }
+
+ $this->assertEqual($same_keys, ($caught === null));
+ }
+ }
+
public function testAssertStringLike() {
$this->assertEqual(
null,
diff --git a/src/utils/utils.php b/src/utils/utils.php
--- a/src/utils/utils.php
+++ b/src/utils/utils.php
@@ -629,6 +629,38 @@
return $arr;
}
+/**
+ * Assert that two arrays have the exact same keys, in any order.
+ *
+ * @param map Array with expected keys.
+ * @param map Array with actual keys.
+ * @return void
+ */
+function assert_same_keys(array $expect, array $actual) {
+ foreach ($expect as $key => $value) {
+ if (isset($actual[$key]) || array_key_exists($key, $actual)) {
+ continue;
+ }
+
+ throw new InvalidArgumentException(
+ pht(
+ 'Expected to find key "%s", but it is not present.',
+ $key));
+
+ }
+
+ foreach ($actual as $key => $value) {
+ if (isset($expect[$key]) || array_key_exists($key, $expect)) {
+ continue;
+ }
+
+ throw new InvalidArgumentException(
+ pht(
+ 'Found unexpected surplus key "%s" where no such key was expected.',
+ $key));
+ }
+}
+
/**
* Assert that passed data can be converted to string.
*
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 22, 3:55 PM (2 h, 7 s)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6918864
Default Alt Text
D20268.id48398.diff (2 KB)
Attached To
Mode
D20268: Add "assert_same_keys()" to "libphutil/"
Attached
Detach File
Event Timeline
Log In to Comment