Home | History | Annotate | Download | only in webkitpy

Lines Matching full:self

64     def test_keychain_lookup_on_non_mac(self):
66 def _is_mac_os_x(self):
69 self.assertEqual(credentials._is_mac_os_x(), False)
70 self.assertEqual(credentials._credentials_from_keychain("foo"), ["foo", None])
72 def test_security_output_parse(self):
74 self.assertEqual(credentials._parse_security_tool_output(self.example_security_output), ["test@webkit.org", "SECRETSAUCE"])
76 def test_security_output_parse_entry_not_found(self):
85 self.assertEqual(credentials._run_security_tool(), None)
88 def _assert_security_call(self, username=None):
93 OutputCapture().assert_outputs(self, credentials._run_security_tool, [username], expected_stderr=expected_stderr)
100 def test_security_calls(self):
101 self._assert_security_call()
102 self._assert_security_call(username="foo")
104 def test_git_config_calls(self):
114 def test_read_credentials_without_git_repo(self):
116 def _is_mac_os_x(self):
118 def _credentials_from_keychain(self, username):
123 self.assertEqual(credentials.read_credentials(), ["test@webkit.org", "SECRETSAUCE"])