From 41e13ae78f8007817d2fa2456483c6b2a4e6c5d1 Mon Sep 17 00:00:00 2001 From: andreisavu Date: Tue, 13 Dec 2011 12:08:33 +0200 Subject: [PATCH] Unit test for parsing registerUserKeys response --- .../parse/RegisterUserKeysResponseTest.java | 45 +++++++++++++++++++ .../resources/registeruserkeysresponse.json | 1 + 2 files changed, 46 insertions(+) create mode 100644 apis/cloudstack/src/test/java/org/jclouds/cloudstack/parse/RegisterUserKeysResponseTest.java create mode 100644 apis/cloudstack/src/test/resources/registeruserkeysresponse.json diff --git a/apis/cloudstack/src/test/java/org/jclouds/cloudstack/parse/RegisterUserKeysResponseTest.java b/apis/cloudstack/src/test/java/org/jclouds/cloudstack/parse/RegisterUserKeysResponseTest.java new file mode 100644 index 0000000000..8a53e93989 --- /dev/null +++ b/apis/cloudstack/src/test/java/org/jclouds/cloudstack/parse/RegisterUserKeysResponseTest.java @@ -0,0 +1,45 @@ +/** + * 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.parse; + +import org.jclouds.cloudstack.domain.ApiKeyPair; +import org.jclouds.json.BaseParserTest; +import org.jclouds.rest.annotations.SelectJson; +import org.testng.annotations.Test; + +/** + * @author Andrei Savu + */ +@Test(groups = "unit") +public class RegisterUserKeysResponseTest extends BaseParserTest { + + @Override + public String resource() { + return "/registeruserkeysresponse.json"; + } + + @Override + @SelectJson("userkeys") + public ApiKeyPair expected() { + return ApiKeyPair.builder() + .apiKey("5nn6IAQ-0BYuAKTu45rf49VsyX0rg9t48TpY8NKsduE5t-_1_g_AU8ZjP3OJvVdlzWKL3Lgfa6_nkC9hU6NyQQ") + .secretKey("GSCDYzj65CiSkxzCJxlFvcF52qglM7HbuG6QL7zYVeWVhVO8GnW85wGTBBuZ3xpzEN_UfKnsORvrNszYQ1ofAw").build(); + } + +} diff --git a/apis/cloudstack/src/test/resources/registeruserkeysresponse.json b/apis/cloudstack/src/test/resources/registeruserkeysresponse.json new file mode 100644 index 0000000000..9e6a9584f8 --- /dev/null +++ b/apis/cloudstack/src/test/resources/registeruserkeysresponse.json @@ -0,0 +1 @@ +{ "registeruserkeysresponse" : { "userkeys" : {"apikey":"5nn6IAQ-0BYuAKTu45rf49VsyX0rg9t48TpY8NKsduE5t-_1_g_AU8ZjP3OJvVdlzWKL3Lgfa6_nkC9hU6NyQQ","secretkey":"GSCDYzj65CiSkxzCJxlFvcF52qglM7HbuG6QL7zYVeWVhVO8GnW85wGTBBuZ3xpzEN_UfKnsORvrNszYQ1ofAw"} } } \ No newline at end of file