我有一個使用Office PIA的Excel包裝類。我也有一個以前寫在NUnit上運行的有限測試套件。我們正在工作中遷移到TFS2010,所以我也將NUnit測試遷移到MSTest。在Team Build 2010下運行鍼對Excel的單元測試的異常
測試套件在我的開發機器上運行良好,並且如果在運行構建代理的機器上使用MSTest命令行實用程序手動執行。但是,當通過Team Build執行時,所有與磁盤I/O(打開,保存等)有關的測試都會失敗。我的構建代理正在域帳戶上運行,並且該域帳戶也是同一臺計算機上的本地管理員。少數不做任何磁盤I/O的測試運行良好,所以我知道Excel正在被解僱和可用。只是看起來像一個權限問題或團隊建設過程的限制。
所以這裏是一個示例函數。這就是我認爲這是Excel I/O問題的原因。 File.Exists檢查傳遞正常。我在測試運行中沒有收到FileNotFoundException,而是直接從Interop層收到COMException。
public void OpenXLS(string workbookFilePath)
{
// Make sure given file path exists
if (!File.Exists(workbookFilePath))
{
throw new FileNotFoundException(String.Format(CultureInfo.CurrentCulture,
"File '{0}' cannot be found.", workbookFilePath));
}
// Open the Workbook
_xlsWorkbook = _xlsWorkbooks.Open(workbookFilePath, 0, false, Missing.Value,
"", Missing.Value, true, Missing.Value, Missing.Value, true, false,
Missing.Value, Missing.Value, Missing.Value, Missing.Value);
}
例外:
System.Runtime.InteropServices.COMException: Microsoft Excel cannot access the file
'C:\BuildPath\TestResults\TestRun\Out\TestBook.xls'. There are several possible reasons:
• The file name or path does not exist.
• The file is being used by another program.
• The workbook you are trying to save has the same name as a currently open
請發佈您收到的全部例外。 – 2011-04-15 20:05:27