/** * Copyright (C) 2008 Progress Software, Inc. All rights reserved. * http://fusesource.com * * The software in this package is published under the terms of the AGPL license * a copy of which has been included with this distribution in the license.txt file. */ package org.fusesource.cloudmix.agent.security; import junit.framework.TestCase; public class SecurityUtilsTest extends TestCase { public void testBasicAuthCredentials() { doBasicAuth("alice", "hunter2", "Basic YWxpY2U6aHVudGVyMg=="); doBasicAuth("alice", "foo", "Basic YWxpY2U6Zm9v"); doBasicAuth("bob", "secret", "Basic Ym9iOnNlY3JldA=="); } private void doBasicAuth(String username, String password, String expected) { char[] passwordChars = password.toCharArray(); String creds = SecurityUtils.toBasicAuth(username, passwordChars); assertEquals(expected, creds); for (int i = 0; i < passwordChars.length; i++) { assertEquals(' ', passwordChars[i]); } } }