blob: bfaac74f0a092c9656bcd526f9f6c0881abc6f31 [file] [log] [blame]
package atscfg
/*
* 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.
*/
import (
"strings"
"testing"
)
func TestMakeStorageDotConfig(t *testing.T) {
profileName := "myProfile"
toolName := "myToolName"
toURL := "https://myto.example.net"
paramData := map[string]string{
"Drive_Prefix": "/dev/sd",
"Drive_Letters": "a,b,c,d,e",
"RAM_Drive_Prefix": "/dev/ra",
"RAM_Drive_Letters": "f,g,h",
"SSD_Drive_Prefix": "/dev/ss",
"SSD_Drive_Letters": "i,j,k",
}
/*
# DO NOT EDIT - Generated for myProfile by myToolName (https://myto.example.net) on Thu
Aug 8 08:58:54 MDT 2019
/dev/sda volume=1
/dev/sdb volume=1
/dev/sdc volume=1
/dev/sdd volume=1
/dev/sde volume=1
/dev/raf volume=2
/dev/rag volume=2
/dev/rah volume=2
/dev/ssi volume=3
/dev/ssj volume=3
/dev/ssk volume=3
*/
txt := MakeStorageDotConfig(profileName, paramData, toolName, toURL)
testComment(t, txt, profileName, toolName, toURL)
if count := strings.Count(txt, "\n"); count != 12 { // one line for each drive letter, plus the comment
t.Errorf("expected one line for each drive letter plus a comment, actual: '"+txt+"' count %v", count)
}
if !strings.Contains(txt, paramData["Drive_Prefix"]) {
t.Errorf("expected to contain Drive_Prefix '" + paramData["Drive_Prefix"] + "', actual: '" + txt + "'")
}
if !strings.Contains(txt, paramData["Ram_Drive_Prefix"]) {
t.Errorf("expected to contain Ram_Drive_Prefix '" + paramData["Ram_Drive_Prefix"] + "', actual: '" + txt + "'")
}
if !strings.Contains(txt, paramData["SSD_Drive_Prefix"]) {
t.Errorf("expected to contain SSD_Drive_Prefix '" + paramData["SSD_Drive_Prefix"] + "', actual: '" + txt + "'")
}
if !strings.Contains(txt, paramData["SSD_Drive_Prefix"]) {
t.Errorf("expected to contain SSD_Drive_Prefix '" + paramData["SSD_Drive_Prefix"] + "', actual: '" + txt + "'")
}
}