1 /*
 2  * Copyright (c) 2018, 2019 Oracle and/or its affiliates. All rights reserved.
 3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 4  *
 5  * This code is free software; you can redistribute it and/or modify it
 6  * under the terms of the GNU General Public License version 2 only, as
 7  * published by the Free Software Foundation.
 8  *
 9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 package org.openjdk.skara.bot;
24 
25 import java.nio.file.Path;
26 
27 import org.junit.jupiter.api.Test;
28 
29 import org.openjdk.skara.json.*;
30 
31 import static org.junit.jupiter.api.Assertions.*;
32 
33 class BotRunnerConfigurationTests {
34     @Test
35     void storageFolder() throws ConfigurationError {
36         var input = JSON.object().put("storage", JSON.object().put("path", "/x"))
37                         .put("xbot", JSON.object());
38         var cfg = BotRunnerConfiguration.parse(input);
39         var botCfg = cfg.perBotConfiguration("xbot");
40 
41         assertEquals(Path.of("/x/xbot"), botCfg.storageFolder());
42     }
43 
44     @Test
45     void parseHost() throws ConfigurationError {
46         var input = JSON.object()
47                         .put("xbot",
48                              JSON.object().put("repository", "test/x/y"));
49         var cfg = BotRunnerConfiguration.parse(input);
50         var botCfg = cfg.perBotConfiguration("xbot");
51 
52         var error = assertThrows(RuntimeException.class, () -> botCfg.repository("test/x/y"));
53         assertEquals("Repository entry test/x/y uses undefined host 'test'", error.getCause().getMessage());
54     }
55 
56     @Test
57     void parseRef() throws ConfigurationError {
58         var input = JSON.object()
59                         .put("xbot",
60                              JSON.object().put("repository", "test/x/y:z"));
61         var cfg = BotRunnerConfiguration.parse(input);
62         var botCfg = cfg.perBotConfiguration("xbot");
63 
64         var error = assertThrows(RuntimeException.class, () -> botCfg.repositoryRef("test/x/y:z"));
65         assertEquals("Repository entry test/x/y uses undefined host 'test'", error.getCause().getMessage());
66     }
67 }