Example #1
0
 public void CloseTest()
 {
     Stream writeableStream = null; // TODO: Initialize to an appropriate value
     TransferStream target = new TransferStream(writeableStream); // TODO: Initialize to an appropriate value
     target.Close();
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Example #2
0
        public void Deflate(string outputPath)
        {
            using (ZlibStream input = new ZlibStream(File.Open(m_Path, FileMode.Open, FileAccess.Read), CompressionMode.Decompress))
            {
                int maxBlockSize;
                logger.Trace("Opening registry key to find MaxBlockSize");
                RegistryKey key = Registry.LocalMachine.OpenSubKey("Software\\Bit Thicket\\Git\\Streams");
                try
                {
                    maxBlockSize = Convert.ToInt32(key.GetValue("MaxBlockSize"));
                }
                catch (Exception e)
                {
                    logger.LogException(LogLevel.Info, "MaxBlockSize not specified.  Using default of 4k", e);
                    maxBlockSize = 4096;
                }

                using (var t0 = new TransferStream(File.Open(outputPath, FileMode.Create, FileAccess.Write)))
                {
                    byte[] buffer = new byte[maxBlockSize];
                    int readCount = 0;
                    input.Read(buffer, 0, (int)m_HeaderLen);
                    while (maxBlockSize == (readCount = input.Read(buffer, 0, maxBlockSize)))
                    {
                        logger.Trace("read {0} bytes", readCount);
                        t0.Write(buffer, 0, readCount);
                    }
                    logger.Trace("writing final block of {0} bytes", readCount);
                    t0.Write(buffer, 0, readCount);
                }
            }
        }
Example #3
0
 public void TransferStreamConstructorTest()
 {
     Stream writeableStream = null; // TODO: Initialize to an appropriate value
     TransferStream target = new TransferStream(writeableStream);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Example #4
0
 public void PositionTest()
 {
     Stream writeableStream = null; // TODO: Initialize to an appropriate value
     TransferStream target = new TransferStream(writeableStream); // TODO: Initialize to an appropriate value
     long expected = 0; // TODO: Initialize to an appropriate value
     long actual;
     target.Position = expected;
     actual = target.Position;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Example #5
0
 public void LengthTest()
 {
     Stream writeableStream = null; // TODO: Initialize to an appropriate value
     TransferStream target = new TransferStream(writeableStream); // TODO: Initialize to an appropriate value
     long actual;
     actual = target.Length;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Example #6
0
 public void WriteTest()
 {
     Stream writeableStream = null; // TODO: Initialize to an appropriate value
     TransferStream target = new TransferStream(writeableStream); // TODO: Initialize to an appropriate value
     byte[] buffer = null; // TODO: Initialize to an appropriate value
     int offset = 0; // TODO: Initialize to an appropriate value
     int count = 0; // TODO: Initialize to an appropriate value
     target.Write(buffer, offset, count);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Example #7
0
 public void SeekTest()
 {
     Stream writeableStream = null; // TODO: Initialize to an appropriate value
     TransferStream target = new TransferStream(writeableStream); // TODO: Initialize to an appropriate value
     long offset = 0; // TODO: Initialize to an appropriate value
     SeekOrigin origin = new SeekOrigin(); // TODO: Initialize to an appropriate value
     long expected = 0; // TODO: Initialize to an appropriate value
     long actual;
     actual = target.Seek(offset, origin);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Example #8
0
 public void ReadTest()
 {
     Stream writeableStream = null; // TODO: Initialize to an appropriate value
     TransferStream target = new TransferStream(writeableStream); // TODO: Initialize to an appropriate value
     byte[] buffer = null; // TODO: Initialize to an appropriate value
     int offset = 0; // TODO: Initialize to an appropriate value
     int count = 0; // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     actual = target.Read(buffer, offset, count);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }