/
githubmirror
/
ignition
Обзор
Документация
Войти
/
githubmirror
/
ignition
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/negative/regression/filesystem.go
58 строк
2 KB
Andrew Jeddeloh
tests/*: rename bb tests
02 май 2019, 23:05
02 май 2019, 23:05
d156383
Код
Авторство
О чём код?
// Copyright 2017 CoreOS, Inc. // // Licensed 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. package regression import ( "github.com/coreos/ignition/v2/tests/register" "github.com/coreos/ignition/v2/tests/types" ) func init() { register.Register(register.NegativeTest, VFATIgnoresWipeFilesystem()) } func VFATIgnoresWipeFilesystem() types.Test { // Originally found in https://github.com/coreos/bugs/issues/2055 name := "regression.filesystem.ignoreswipe" in := types.GetBaseDisk() out := in mntDevices := []types.MntDevice{ { Label: "OEM", Substitution: "$DEVICE", }, } config := `{ "ignition": {"version": "$version"}, "storage": { "filesystems": [{ "device": "$DEVICE", "format": "vfat", "path": "/tmp0", "wipeFilesystem": false }] } }` configMinVersion := "3.0.0" return types.Test{ Name: name, In: in, Out: out, MntDevices: mntDevices, Config: config, ConfigMinVersion: configMinVersion, } }