[ https://issues.apache.org/jira/browse/LUCENENET-65?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
George Aroush resolved LUCENENET-65.
------------------------------------
Resolution: Fixed
Patch applied and delivered to 2.1
> Test case "TestSerializable" uses the stream after closing.
> ------------------------------------------------------------
>
> Key: LUCENENET-65
> URL: https://issues.apache.org/jira/browse/LUCENENET-65
> Project: Lucene.Net
> Issue Type: Bug
> Reporter: Digy
> Assignee: George Aroush
> Priority: Trivial
> Attachments: TestRAMDirectory.patch
>
>
>
> [Test]
> public virtual void TestSerializable()
> {
> Directory dir = new RAMDirectory();
> System.IO.MemoryStream bos = new System.IO.MemoryStream(1024);
> Assert.AreEqual(0, bos.Length, "initially empty");
> System.IO.BinaryWriter out_Renamed = new System.IO.BinaryWriter(bos);
> long headerSize = bos.Length;
> System.Runtime.Serialization.Formatters.Binary.BinaryFormatter formatter
= new System.Runtime.Serialization.Formatters.Binary.BinaryFormatter();
> formatter.Serialize(out_Renamed.BaseStream, dir);
> //out_Renamed.Close(); ----> BUGGY LINE
> Assert.IsTrue(headerSize < bos.Length, "contains more then just header");
> out_Renamed.Close();
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
|