// NAnt - A .NET build tool // Copyright (C) 2001-2003 Gerry Shaw // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // Gerry Shaw (gerry_shaw@yahoo.com) using System; using System.IO; using System.Text; namespace Tests.NAnt.Core.Util { /// /// Captures console output to a string. /// /// /// Used to capture the output so that it can be tested. /// /// /// /// using (ConsoleCapture c = new ConsoleCapture()) { /// Console.WriteLine("Hello World"); /// string result = c.Close(); /// Console.WriteLine("cached results: '{0}'", result); /// } /// /// public sealed class ConsoleCapture : IDisposable { #region Public Instance Constructors /// /// Initializes a new instance of the /// class. /// public ConsoleCapture() { _oldWriter = System.Console.Out; _oldErrorWriter = System.Console.Error; _writer = new StringWriter(); System.Console.SetOut(_writer); System.Console.SetError(_writer); } #endregion Public Instance Constructors #region Finalizer ~ConsoleCapture() { Dispose(); } #endregion Finalizer #region Implementation of IDisposable public void Dispose() { if (!_disposed) { _writer.Flush(); _writer.Close(); System.Console.SetOut(_oldWriter); System.Console.SetError(_oldErrorWriter); } _disposed = true; GC.SuppressFinalize(this); } #endregion Implementation of IDisposable #region Override implementation of Object /// /// Returns the contents of the capture buffer. Can be called after /// is called. /// public override string ToString() { return _writer.ToString(); } #endregion Override implementation of Object #region Public Instance Methods /// /// Restores console output and returns the contents of the captured /// buffer. /// public string Close() { if (_disposed) { throw new ObjectDisposedException("ConsoleCapture", "Capture has already been closed/disposed."); } Dispose(); return ToString(); } #endregion Public Instance Methods #region Private Instance Fields private bool _disposed = false; private StringWriter _writer; private TextWriter _oldWriter; private TextWriter _oldErrorWriter; #endregion Private Instance Fields } }