summaryrefslogtreecommitdiff
path: root/subversion/bindings/swig/perl/native/t/9wc.t
blob: 257b1d24ece74feb67432c70368194f523268a79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/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 Test::More tests => 19;
use Scalar::Util;

# shut up about variables that are only used once.
# these come from constants and variables used
# by the bindings but not elsewhere in perl space.
no warnings 'once';

# TEST
use_ok('SVN::Core');
# TEST
use_ok('SVN::Wc');

my $external_desc = <<'END';
http://svn.example.com/repos/project1 project1
-r6 ^/repos/project2@3 "Project 2"
END

# Run parse_externals_description3()
# TEST
my ($externals) = SVN::Wc::parse_externals_description3("/fake/path",
                                                        $external_desc, 1);
isa_ok($externals, 'ARRAY', 'parse_externals_description3 returns array ref');

# Check the first member of the returned array.
# TEST
isa_ok($externals->[0], '_p_svn_wc_external_item2_t');
# TEST
is($externals->[0]->target_dir(), 'project1');
# TEST
is($externals->[0]->url(), 'http://svn.example.com/repos/project1');
# TEST
isa_ok($externals->[0]->revision(), '_p_svn_opt_revision_t');
# TEST
is($externals->[0]->revision->kind, $SVN::Core::opt_revision_head);
# TEST
isa_ok($externals->[0]->peg_revision(), '_p_svn_opt_revision_t');
# TEST
is($externals->[0]->peg_revision()->kind(),
   $SVN::Core::opt_revision_head);

# Check the second member
# TEST
isa_ok($externals->[1], '_p_svn_wc_external_item2_t');
# TEST
is($externals->[1]->target_dir(), 'Project 2');
# TEST
is($externals->[1]->url(), '^/repos/project2');
# TEST
isa_ok($externals->[1]->revision(), '_p_svn_opt_revision_t');
# TEST
is($externals->[1]->revision()->kind(), $SVN::Core::opt_revision_number);
# TEST
is($externals->[1]->revision()->value()->number(), 6);
# TEST
isa_ok($externals->[1]->peg_revision(), '_p_svn_opt_revision_t');
# TEST
is($externals->[1]->peg_revision()->kind(), $SVN::Core::opt_revision_number);
# TEST
is($externals->[1]->peg_revision()->value()->number(), 3);