// Copyright 2015 Google Inc. All Rights Reserved. // // 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 fusetesting import ( "fmt" "os" "reflect" "time" "github.com/jacobsa/oglematchers" ) // Match os.FileInfo values that specify an mtime equal to the given time. On // platforms where the Sys() method returns a struct containing an mtime, check // also that it matches. func MtimeIs(expected time.Time) oglematchers.Matcher { return oglematchers.NewMatcher( func(c interface{}) error { return mtimeIs(c, expected) }, fmt.Sprintf("mtime is %v", expected)) } func mtimeIs(c interface{}, expected time.Time) error { fi, ok := c.(os.FileInfo) if !ok { return fmt.Errorf("which is of type %v", reflect.TypeOf(c)) } // Check ModTime(). if fi.ModTime() != expected { d := fi.ModTime().Sub(expected) return fmt.Errorf("which has mtime %v, off by %v", fi.ModTime(), d) } // Check Sys(). if sysMtime, ok := extractMtime(fi.Sys()); ok { if sysMtime != expected { d := sysMtime.Sub(expected) return fmt.Errorf("which has Sys() mtime %v, off by %v", sysMtime, d) } } return nil } // Match os.FileInfo values that specify a file birth time equal to the given // time. On platforms where there is no birth time available, match all // os.FileInfo values. func BirthtimeIs(expected time.Time) oglematchers.Matcher { return oglematchers.NewMatcher( func(c interface{}) error { return birthtimeIs(c, expected) }, fmt.Sprintf("birthtime is %v", expected)) } func birthtimeIs(c interface{}, expected time.Time) error { fi, ok := c.(os.FileInfo) if !ok { return fmt.Errorf("which is of type %v", reflect.TypeOf(c)) } // Check Sys(). if sysBirthtime, ok := extractBirthtime(fi.Sys()); ok { if sysBirthtime != expected { d := sysBirthtime.Sub(expected) return fmt.Errorf( "which has Sys() birthtime %v, off by %v", sysBirthtime, d) } } return nil }