summaryrefslogtreecommitdiff
path: root/indra/newview/tests/llslurl_test.cpp
blob: fc9f5b707a9ec34ce630924237bcef8b903022ec (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/**
 * @file llsecapi_test.cpp
 * @author Roxie
 * @date 2009-02-10
 * @brief Test the sec api functionality
 *
 * $LicenseInfo:firstyear=2009&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2014, Linden Research, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */
#include "../llviewerprecompiledheaders.h"
#include "../llviewernetwork.h"
#include "../test/lltut.h"
#include "../llslurl.h"
#include "../../llxml/llcontrol.h"
#include "llsdserialize.h"

namespace
{

// Should not collide with other test programs creating temp files.
static const char * const TEST_FILENAME("llslurl_test.xml");

}

//
// Stub implementation for LLTrans
//
class LLTrans
{
public:
    static std::string getString(std::string_view xml_desc, const LLStringUtil::format_map_t& args, bool def_string = false);
};

std::string LLTrans::getString(std::string_view xml_desc, const LLStringUtil::format_map_t& args, bool def_string)
{
    return std::string();
}

//----------------------------------------------------------------------------
// Mock objects for the dependencies of the code we're testing

LLControlGroup::LLControlGroup(const std::string& name)
: LLInstanceTracker<LLControlGroup, std::string>(name) {}
LLControlGroup::~LLControlGroup() {}
LLControlVariable* LLControlGroup::declareString(const std::string& name,
                                   const std::string& initial_val,
                                   const std::string& comment,
                                   LLControlVariable::ePersist persist) {return NULL;}
void LLControlGroup::setString(std::string_view name, const std::string& val){}

std::string gCmdLineLoginURI;
std::string gCmdLineGridChoice;
std::string gCmdLineHelperURI;
std::string gLoginPage;
std::string gCurrentGrid;
std::string LLControlGroup::getString(std::string_view name)
{
    if (name == "CmdLineGridChoice")
        return gCmdLineGridChoice;
    else if (name == "CmdLineHelperURI")
        return gCmdLineHelperURI;
    else if (name == "LoginPage")
        return gLoginPage;
    else if (name == "CurrentGrid")
        return gCurrentGrid;
    return "";
}

LLSD LLControlGroup::getLLSD(std::string_view name)
{
    if (name == "CmdLineLoginURI")
    {
        if(!gCmdLineLoginURI.empty())
        {
            return LLSD(gCmdLineLoginURI);
        }
    }
    return LLSD();
}

LLPointer<LLControlVariable> LLControlGroup::getControl(std::string_view name)
{
    ctrl_name_table_t::iterator iter = mNameTable.find(name.data());
    return iter == mNameTable.end() ? LLPointer<LLControlVariable>() : iter->second;
}

LLControlGroup gSavedSettings("test");
const char *gSampleGridFile =
    "<?xml version=\"1.0\"?>"
    "<llsd>"
    "  <map>"
    "    <key>foo.bar.com</key>"
    "    <map>"
    "      <key>helper_uri</key><string>https://foobar/helpers/</string>"
    "      <key>label</key><string>Foobar Grid</string>"
    "      <key>login_page</key><string>foobar/loginpage</string>"
    "      <key>login_uri</key>"
    "      <array>"
    "        <string>foobar/loginuri</string>"
    "      </array>"
    "      <key>keyname</key><string>foo.bar.com</string>"
    "      <key>credential_type</key><string>agent</string>"
    "      <key>grid_login_id</key><string>FooBar</string>"
    "    </map>"
    "    <key>my.grid.com</key>"
    "    <map>"
    "      <key>helper_uri</key><string>https://mygrid/helpers/</string>"
    "      <key>label</key><string>My Grid</string>"
    "      <key>login_page</key><string>mygrid/loginpage</string>"
    "      <key>login_uri</key>"
    "      <array>"
    "        <string>mygrid/loginuri</string>"
    "      </array>"
    "      <key>keyname</key><string>my.grid.com</string>"
    "      <key>credential_type</key><string>agent</string>"
    "      <key>grid_login_id</key><string>MyGrid</string>"
    "    </map>"
    "  </map>"
    "</llsd>"
    ;

// -------------------------------------------------------------------------------------------
// TUT
// -------------------------------------------------------------------------------------------
namespace tut
{
    // Test wrapper declaration : wrapping nothing for the moment
    struct slurlTest
    {
        slurlTest()
        {
            LLGridManager::getInstance()->initialize(std::string(""));
        }
        ~slurlTest()
        {
        }
    };

    // Tut templating thingamagic: test group, object and test instance
    typedef test_group<slurlTest> slurlTestFactory;
    typedef slurlTestFactory::object slurlTestObject;
    tut::slurlTestFactory tut_test("LLSlurl");

    // ---------------------------------------------------------------------------------------
    // Test functions
    // ---------------------------------------------------------------------------------------
    // construction from slurl string
    template<> template<>
    void slurlTestObject::test<1>()
    {
        llofstream gridfile(TEST_FILENAME);
        gridfile << gSampleGridFile;
        gridfile.close();

        LLGridManager::getInstance()->initialize(TEST_FILENAME);

        LLGridManager::getInstance()->setGridChoice("util.agni.lindenlab.com");

        LLSLURL slurl = LLSLURL("");
        ensure_equals("null slurl", (int)slurl.getType(), LLSLURL::LAST_LOCATION);

        slurl = LLSLURL("http://slurl.com/secondlife/myregion");
        ensure_equals("slurl.com slurl, region only - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("slurl.com slurl, region only", slurl.getSLURLString(),
                      "http://maps.secondlife.com/secondlife/myregion/128/128/0");

        slurl = LLSLURL("http://maps.secondlife.com/secondlife/myregion/1/2/3");
        ensure_equals("maps.secondlife.com slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("maps.secondlife.com slurl, region + coords", slurl.getSLURLString(),
                      "http://maps.secondlife.com/secondlife/myregion/1/2/3");

        slurl = LLSLURL("secondlife://");
        ensure_equals("secondlife: slurl, empty - type", slurl.getType(), LLSLURL::EMPTY);

        slurl = LLSLURL("secondlife:///");
        ensure_equals("secondlife: slurl, root - type", slurl.getType(), LLSLURL::EMPTY);

        slurl = LLSLURL("secondlife://myregion");
        ensure_equals("secondlife: slurl, region only - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("secondlife: slurl, region only", slurl.getSLURLString(),
                      "http://maps.secondlife.com/secondlife/myregion/128/128/0");

        slurl = LLSLURL("secondlife://myregion/1/2/3");
        ensure_equals("secondlife: slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("secondlife slurl, region + coords", slurl.getSLURLString(),
                      "http://maps.secondlife.com/secondlife/myregion/1/2/3");

        slurl = LLSLURL("/myregion");
        ensure_equals("/region slurl, region- type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("/region slurl, region ", slurl.getSLURLString(),
                      "http://maps.secondlife.com/secondlife/myregion/128/128/0");

        slurl = LLSLURL("/myregion/1/2/3");
        ensure_equals("/: slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("/ slurl, region + coords", slurl.getSLURLString(),
                      "http://maps.secondlife.com/secondlife/myregion/1/2/3");

        slurl = LLSLURL("my region/1/2/3");
        ensure_equals(" slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals(" slurl, region + coords", slurl.getSLURLString(),
                      "http://maps.secondlife.com/secondlife/my%20region/1/2/3");

        LLGridManager::getInstance()->setGridChoice("my.grid.com");
        slurl = LLSLURL("https://my.grid.com/region/my%20region/1/2/3");
        ensure_equals("grid slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("grid slurl, region + coords", slurl.getSLURLString(),
                      "https://my.grid.com/region/my%20region/1/2/3");

        slurl = LLSLURL("https://my.grid.com/region/my region");
        ensure_equals("grid slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("grid slurl, region + coords", slurl.getSLURLString(),
                      "https://my.grid.com/region/my%20region/128/128/0");

        LLGridManager::getInstance()->setGridChoice("foo.bar.com");
        slurl = LLSLURL("/myregion/1/2/3");
        ensure_equals("/: slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("/ slurl, region + coords", slurl.getSLURLString(),
                      "https://foo.bar.com/region/myregion/1/2/3");

        slurl = LLSLURL("myregion/1/2/3");
        ensure_equals(": slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals(" slurl, region + coords", slurl.getSLURLString(),
                      "https://foo.bar.com/region/myregion/1/2/3");

        slurl = LLSLURL(LLSLURL::SIM_LOCATION_HOME);
        ensure_equals("home", slurl.getType(), LLSLURL::HOME_LOCATION);

        slurl = LLSLURL(LLSLURL::SIM_LOCATION_LAST);
        ensure_equals("last", slurl.getType(), LLSLURL::LAST_LOCATION);

        slurl = LLSLURL("secondlife:///app/foo/bar?12345");
        ensure_equals("app", slurl.getType(), LLSLURL::APP);
        ensure_equals("appcmd", slurl.getAppCmd(), "foo");
        ensure_equals("apppath", slurl.getAppPath().size(), 1);
        ensure_equals("apppath2", slurl.getAppPath()[0].asString(), "bar");
        ensure_equals("appquery", slurl.getAppQuery(), "12345");
        ensure_equals("grid1", slurl.getGrid(), "FooBar");

        slurl = LLSLURL("secondlife://Aditi/app/foo/bar?12345");
        ensure_equals("app", slurl.getType(), LLSLURL::APP);
        ensure_equals("appcmd", slurl.getAppCmd(), "foo");
        ensure_equals("apppath", slurl.getAppPath().size(), 1);
        ensure_equals("apppath2", slurl.getAppPath()[0].asString(), "bar");
        ensure_equals("appquery", slurl.getAppQuery(), "12345");
        ensure_equals("grid2",  slurl.getGrid(), "Aditi");

        LLGridManager::getInstance()->setGridChoice("foo.bar.com");
        slurl = LLSLURL("secondlife:///secondlife/myregion/1/2/3");
        ensure_equals("/: slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("location", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("region" , "myregion", slurl.getRegion());
        ensure_equals("grid3", slurl.getGrid(), "util.agni.lindenlab.com");

        slurl = LLSLURL("secondlife://Aditi/secondlife/myregion/1/2/3");
        ensure_equals("/: slurl, region + coords - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("location", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("region" , "myregion", slurl.getRegion());
        ensure_equals("grid4", slurl.getGrid(), "Aditi" );

        LLGridManager::getInstance()->setGridChoice("my.grid.com");
        slurl = LLSLURL("https://my.grid.com/app/foo/bar?12345");
        ensure_equals("app", slurl.getType(), LLSLURL::APP);
        ensure_equals("appcmd", slurl.getAppCmd(), "foo");
        ensure_equals("apppath", slurl.getAppPath().size(), 1);
        ensure_equals("apppath2", slurl.getAppPath()[0].asString(), "bar");
        ensure_equals("appquery", slurl.getAppQuery(), "12345");

    }

    // construction from grid/region/vector combos
    template<> template<>
    void slurlTestObject::test<2>()
    {
        llofstream gridfile(TEST_FILENAME);
        gridfile << gSampleGridFile;
        gridfile.close();

        LLGridManager::getInstance()->initialize(TEST_FILENAME);

        LLSLURL slurl = LLSLURL("my.grid.com", "my region");
        ensure_equals("grid/region - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals("grid/region", slurl.getSLURLString(),
                      "https://my.grid.com/region/my%20region/128/128/0");

        slurl = LLSLURL("my.grid.com", "my region", LLVector3(1,2,3));
        ensure_equals("grid/region/vector - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals(" grid/region/vector", slurl.getSLURLString(),
                      "https://my.grid.com/region/my%20region/1/2/3");

        LLGridManager::getInstance()->setGridChoice("util.agni.lindenlab.com");
        slurl = LLSLURL("my region", LLVector3(1,2,3));
        ensure_equals("default grid/region/vector - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals(" default grid/region/vector", slurl.getSLURLString(),
                      "http://maps.secondlife.com/secondlife/my%20region/1/2/3");

        LLGridManager::getInstance()->setGridChoice("MyGrid");
        slurl = LLSLURL("my region", LLVector3(1,2,3));
        ensure_equals("default grid/region/vector - type", slurl.getType(), LLSLURL::LOCATION);
        ensure_equals(" default grid/region/vector", slurl.getSLURLString(),
                      "https://my.grid.com/region/my%20region/1/2/3");

    }
    // Accessors
    template<> template<>
    void slurlTestObject::test<3>()
    {
        llofstream gridfile(TEST_FILENAME);
        gridfile << gSampleGridFile;
        gridfile.close();

        LLGridManager::getInstance()->initialize(TEST_FILENAME);

        LLGridManager::getInstance()->setGridChoice("my.grid.com");
        LLSLURL slurl = LLSLURL("https://my.grid.com/region/my%20region/1/2/3");
        ensure_equals("login string", slurl.getLoginString(), "uri:my region&amp;1&amp;2&amp;3");
        ensure_equals("location string", slurl.getLocationString(), "my region/1/2/3");
        ensure_equals("grid", slurl.getGrid(), "my.grid.com");
        ensure_equals("region", slurl.getRegion(), "my region");
        ensure_equals("position", slurl.getPosition(), LLVector3(1, 2, 3));

    }
}