added missing classes from pull

This commit is contained in:
Adrian Cole 2011-11-14 13:38:06 +02:00
parent a2f518bb87
commit f3a31beb69
3 changed files with 99 additions and 0 deletions

View File

@ -27,6 +27,7 @@ import java.util.Map;
import org.jclouds.scriptbuilder.domain.OsFamily;
import org.jclouds.scriptbuilder.domain.Statement;
import org.jclouds.scriptbuilder.util.Utils;
import org.jclouds.virtualbox.functions.MacAddressToBSD;
import com.google.common.base.Joiner;
import com.google.common.base.Splitter;

View File

@ -0,0 +1,55 @@
/**
* 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.virtualbox.functions;
import static com.google.common.base.Preconditions.checkArgument;
import com.google.common.base.Function;
import com.google.common.base.Joiner;
import com.google.common.base.Splitter;
import com.google.common.collect.Iterables;
/**
* @author Andrea Turli
*/
public enum MacAddressToBSD implements Function<String, String> {
INSTANCE;
@Override
public String apply(String macAddress) {
checkArgument(macAddress.length() == 17);
return Joiner.on(":").join(
Iterables.transform(Splitter.on(":").split(macAddress),
new Function<String, String>() {
@Override
public String apply(String arg0) {
if (arg0.equals("00"))
return "0";
if (arg0.startsWith("0"))
return arg0.substring(1);
return arg0;
}
}));
}
}

View File

@ -0,0 +1,43 @@
/**
* 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.virtualbox.functions;
import static org.testng.Assert.assertEquals;
import org.testng.annotations.Test;
import com.google.common.base.Joiner;
import com.google.common.base.Splitter;
/**
* @author Andrea Turli
*/
@Test(groups = "unit", testName = "MacAddressToBSDTest")
public class MacAddressToBSDTest {
private static final String vboxMacAddressFormat = "0800271A9806";
private static final String bsdMacAddressFormat = "8:0:27:1a:98:6";
@Test
public void testTransformMacAddressToBSDFormat() {
assertEquals(MacAddressToBSD.INSTANCE.apply(Joiner.on(":").join(Splitter.fixedLength(2).split(vboxMacAddressFormat)).toLowerCase()), bsdMacAddressFormat);
}
}