Add early acceptance test for reauthentication.
diff --git a/interfaces.go b/interfaces.go
index 6d9b3c7..ed16afe 100644
--- a/interfaces.go
+++ b/interfaces.go
@@ -9,10 +9,12 @@
// field.
FirstEndpointUrlByCriteria(ApiCriteria) string
- // TODO(sfalvo): get Token() to automatically renew the authentication token if it's near expiry.
-
// AuthToken provides a copy of the current authentication token for the user's credentials.
+ // Note that AuthToken() will not automatically refresh an expired token.
AuthToken() string
+
+ // Revoke allows you to terminate any program's access to the OpenStack API by token ID.
+ Revoke(string) error
}
// CloudServersProvider instances encapsulate a Cloud Servers API, should one exist in the service catalog