@Test
  public void checkMetaData() throws CloudException, InternalException {
    IdentityServices services = tm.getProvider().getIdentityServices();

    if (services != null) {
      ShellKeySupport support = services.getShellKeySupport();

      if (support != null) {
        tm.out("Subscribed", support.isSubscribed());
        tm.out("Term for Keypair", support.getProviderTermForKeypair(Locale.getDefault()));
        tm.out("Key Import Req", support.getKeyImportSupport());
      } else {
        tm.ok("No shell key support in this cloud");
      }
    } else {
      tm.ok("No identity services in this cloud");
    }
  }