blob: 8397b92c7ce4223fd3f0aa85038bf02e39c4a39f [file] [log] [blame]
#!/usr/bin/perl
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF 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.
use strict;
use warnings;
use Usergrid::Client;
use IO::Socket::INET;
use Test::More;
# TEST DATA
our $hostname = 'localhost';
our $port = '8080';
our $api_url = "http://$hostname:$port";
our $organization = 'test-organization';
our $application = 'test-app';
our $username = 'testuser';
our $password = 'Testuser123$';
###########
if (_check_port($hostname, $port)) {
plan tests => 1;
} else {
plan skip_all => "server $api_url not reachable"
}
sub _check_port {
my ($hostname, $port) = @_;
new IO::Socket::INET ( PeerAddr => $hostname, PeerPort => $port,
Proto => 'tcp' ) || return 0;
return 1;
}
my ($user, $token);
# Create the client object that will be used for all subsequent requests
my $client = Usergrid::Client->new(
organization => $organization,
application => $application,
api_url => $api_url,
trace => 0
);
# Create a test user
$user = $client->add_entity("users", { username=>$username, password=>$password });
$token = $client->login($username, $password);
ok ( $token->{user}->{username} eq $username, "user logged in" );
$client->delete_entity($user);