blob: 3c52d53619adc511686a3cb5cbc598930ec67dfb [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 TestMakeVolumeDotConfig(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",
}
txt := MakeVolumeDotConfig(profileName, paramData, toolName, toURL)
testComment(t, txt, profileName, toolName, toURL)
if count := strings.Count(txt, "\n"); count != 5 { // one line for each volume, plus 2 comments
t.Errorf("expected one line for each drive letter plus a comment, actual: '%v' count %v", txt, count)
}
if !strings.Contains(txt, "size=33%") {
t.Errorf("expected size=33%% for three volumes, actual: '%v'", txt)
}
delete(paramData, "SSD_Drive_Prefix")
delete(paramData, "SSD_Drive_Letters")
txt = MakeVolumeDotConfig(profileName, paramData, toolName, toURL)
if count := strings.Count(txt, "\n"); count != 4 { // one line for each volume, plus 2 comments
t.Errorf("expected one line for each drive letter plus a comment, actual: '%v' count %v", txt, count)
}
if !strings.Contains(txt, "size=50%") {
t.Errorf("expected size=50%% for two volumes, actual: '%v'", txt)
}
delete(paramData, "RAM_Drive_Prefix")
delete(paramData, "RAM_Drive_Letters")
txt = MakeVolumeDotConfig(profileName, paramData, toolName, toURL)
if count := strings.Count(txt, "\n"); count != 3 { // one line for each volume, plus 2 comments
t.Errorf("expected one line for each drive letter plus a comment, actual: '%v' count %v", txt, count)
}
if !strings.Contains(txt, "size=100%") {
t.Errorf("expected size=100%% for one volume, actual: '%v'", txt)
}
}