mirror of
https://github.com/apache/jclouds.git
synced 2025-02-17 15:35:44 +00:00
Merge pull request #1136 from DaanHoogland/master
windows File object translates slashes in domain/user
This commit is contained in:
commit
0b6b980adb
@ -22,8 +22,6 @@ import static com.google.common.base.Charsets.UTF_8;
|
|||||||
import static com.google.common.hash.Hashing.md5;
|
import static com.google.common.hash.Hashing.md5;
|
||||||
import static com.google.common.io.BaseEncoding.base16;
|
import static com.google.common.io.BaseEncoding.base16;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import javax.inject.Singleton;
|
import javax.inject.Singleton;
|
||||||
|
|
||||||
@ -49,9 +47,9 @@ public class LoginWithPasswordCredentials extends CacheLoader<Credentials, Login
|
|||||||
|
|
||||||
// domain may be present
|
// domain may be present
|
||||||
if (username.indexOf('/') != -1) {
|
if (username.indexOf('/') != -1) {
|
||||||
File domainUsername = new File(username);
|
// username may not end with slash!
|
||||||
username = domainUsername.getName();
|
domain = username.substring(0,username.lastIndexOf('/'));
|
||||||
domain = domainUsername.getParent();
|
username = username.substring(username.lastIndexOf('/') + 1, username.length());
|
||||||
}
|
}
|
||||||
String hashedPassword = base16().lowerCase().encode(md5().hashString(input.credential, UTF_8).asBytes());
|
String hashedPassword = base16().lowerCase().encode(md5().hashString(input.credential, UTF_8).asBytes());
|
||||||
return client.loginUserInDomainWithHashOfPassword(username, domain, hashedPassword);
|
return client.loginUserInDomainWithHashOfPassword(username, domain, hashedPassword);
|
||||||
|
@ -0,0 +1,80 @@
|
|||||||
|
/**
|
||||||
|
* Licensed to jclouds, Inc. (jclouds) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. jclouds licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
package org.jclouds.cloudstack.loaders;
|
||||||
|
|
||||||
|
import static org.easymock.EasyMock.anyObject;
|
||||||
|
import static org.easymock.EasyMock.createMock;
|
||||||
|
import static org.easymock.EasyMock.eq;
|
||||||
|
import static org.easymock.EasyMock.expect;
|
||||||
|
import static org.easymock.EasyMock.replay;
|
||||||
|
|
||||||
|
import org.jclouds.cloudstack.domain.LoginResponse;
|
||||||
|
import org.jclouds.cloudstack.features.SessionClient;
|
||||||
|
import org.jclouds.domain.Credentials;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
public class LoginWithPasswordCredentialsTest {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This test is different from the single domainname test as it included testing on how the
|
||||||
|
* domainname is rebuild. It is here to prove that this particular test fails on systems
|
||||||
|
* with a different path separator.
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void testWithDoubleDomainname() {
|
||||||
|
LoginResponse response = createMock(LoginResponse.class);
|
||||||
|
SessionClient client = createMock(SessionClient.class);
|
||||||
|
|
||||||
|
expect(client.loginUserInDomainWithHashOfPassword(eq("User"), eq("Test/Domain"), (String) anyObject())).andReturn(response);
|
||||||
|
replay(client);
|
||||||
|
|
||||||
|
LoginWithPasswordCredentials obj = new LoginWithPasswordCredentials(client);
|
||||||
|
Credentials cred = new Credentials("Test/Domain/User", "koffiedik");
|
||||||
|
|
||||||
|
obj.load(cred);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWithSingleDomainname() {
|
||||||
|
LoginResponse response = createMock(LoginResponse.class);
|
||||||
|
SessionClient client = createMock(SessionClient.class);
|
||||||
|
|
||||||
|
expect(client.loginUserInDomainWithHashOfPassword(eq("User"), eq("Domain"), (String) anyObject())).andReturn(response);
|
||||||
|
replay(client);
|
||||||
|
|
||||||
|
LoginWithPasswordCredentials obj = new LoginWithPasswordCredentials(client);
|
||||||
|
Credentials cred = new Credentials("Domain/User", "koffiedik");
|
||||||
|
|
||||||
|
obj.load(cred);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWithNoDomainname() {
|
||||||
|
LoginResponse response = createMock(LoginResponse.class);
|
||||||
|
SessionClient client = createMock(SessionClient.class);
|
||||||
|
|
||||||
|
expect(client.loginUserInDomainWithHashOfPassword(eq("User"), eq(""), (String) anyObject())).andReturn(response);
|
||||||
|
replay(client);
|
||||||
|
|
||||||
|
LoginWithPasswordCredentials obj = new LoginWithPasswordCredentials(client);
|
||||||
|
Credentials cred = new Credentials("User", "koffiedik");
|
||||||
|
|
||||||
|
obj.load(cred);
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user