Example #1
0
        private static bool IsValidFilePath(BackupMetadata meta)
        {
            if (BackupFileTools.IsUrl(meta.PhysicalDeviceName))
            {
                return(true);
            }

            // A quick check before leaning on exceptions
            if (Path.GetInvalidPathChars().Any(meta.PhysicalDeviceName.Contains))
            {
                return(false);
            }

            try {
                // This will throw an argument exception if the path is invalid
                Path.GetFullPath(meta.PhysicalDeviceName);
                // A relative path won't help us much if the destination is another server. It needs to be rooted.
                return(Path.IsPathRooted(meta.PhysicalDeviceName));
            }
            catch (Exception) {
                return(false);
            }
        }
Example #2
0
        private static bool IsValidFilePath(BackupMetadata meta)
        {
            var path = meta.PhysicalDeviceName;

            return(BackupFileTools.IsValidFileUrl(path) || BackupFileTools.IsValidFilePath(path));
        }
Example #3
0
 public void InValidPathTests(string path)
 {
     Assert.False(BackupFileTools.IsValidFilePath(path));
 }
Example #4
0
 public void BackupTypeAbbrevToType(string abbrev, BackupFileTools.BackupType type)
 {
     Assert.Equal(type, BackupFileTools.BackupTypeAbbrevToType(abbrev));
 }
Example #5
0
 public void BackupTypeToExtensionTest(BackupFileTools.BackupType type, string ext)
 {
     Assert.Equal(ext, BackupFileTools.BackupTypeToExtension(type));
 }
Example #6
0
 public void InvalidUrlTests(string url)
 {
     Assert.False(BackupFileTools.IsValidFileUrl(url));
 }
Example #7
0
 public void ValidUrlTests(string url)
 {
     Assert.True(BackupFileTools.IsValidFileUrl(url));
 }
Example #8
0
 public void NonUrlFilesAreNotUrl(string file)
 {
     Assert.False(BackupFileTools.IsUrl(file));
 }
Example #9
0
 public void UrlFilesAreUrl(string file)
 {
     Assert.True(BackupFileTools.IsUrl(file));
 }