Lines Matching refs:tools
24 from oauth2client import tools
39 httpd = tools.ClientRedirectServer(('localhost', 0),
40 tools.ClientRedirectHandler)
75 @mock.patch('oauth2client.tools.logging')
76 @mock.patch('oauth2client.tools.input')
81 returned_credentials = tools.run_flow(self.flow, self.storage)
90 @mock.patch('oauth2client.tools.logging')
91 @mock.patch('oauth2client.tools.input')
97 returned_credentials = tools.run_flow(
105 @mock.patch('oauth2client.tools.logging')
106 @mock.patch('oauth2client.tools.input')
114 tools.run_flow(self.flow, self.storage, flags=self.flags)
119 @mock.patch('oauth2client.tools.logging')
120 @mock.patch('oauth2client.tools.ClientRedirectServer')
128 returned_credentials = tools.run_flow(
141 @mock.patch('oauth2client.tools.logging')
142 @mock.patch('oauth2client.tools.ClientRedirectServer')
151 tools.run_flow(self.flow, self.storage, flags=self.server_flags)
155 @mock.patch('oauth2client.tools.logging')
156 @mock.patch('oauth2client.tools.ClientRedirectServer')
165 tools.run_flow(self.flow, self.storage, flags=self.server_flags)
169 @mock.patch('oauth2client.tools.logging')
170 @mock.patch('oauth2client.tools.ClientRedirectServer')
171 @mock.patch('oauth2client.tools.input')
179 returned_credentials = tools.run_flow(
192 self.assertIn('somefile.txt', tools.message_if_missing('somefile.txt'))