GithubHelp home page GithubHelp logo

Comments (3)

jmajoor avatar jmajoor commented on August 25, 2024

TestCase:

The test case has a thread as a data feed and waits until at least one invocation occurs in the subscription. After this it will dispose the subscription (the input thread will keep running until canceled).

Expected behavior: The test to run to completion.

Actual behavior: A null reference exception due to the disposed currentBatch state and the non disposed observable.

    [TestMethod, TestCategory("Gated")]
    public async Task DisposeTest1()
    {
        var cancelTokenSource = new CancellationTokenSource();
        var inputSubject = new Subject<int>();
        var lastSeenSubscription = 0;
        var observableInput = inputSubject.AsObservable();

        var inputTask = new Task(() =>
        {
            var n = 0;
            while (!cancelTokenSource.Token.IsCancellationRequested)
            {
                inputSubject.OnNext(++n);
                Thread.Sleep(10);
            }
            inputSubject.OnCompleted();
        });

        var semaphore = new SemaphoreSlim(0, 1);
        var subscription = observableInput.ToAtemporalStreamable(TimelinePolicy.Sequence(1)).Count().ToStreamEventObservable().Where(c => c.IsData).Subscribe(c =>
        {
            Interlocked.Exchange(ref lastSeenSubscription, (int)c.Payload);
            if (semaphore.CurrentCount == 0) semaphore.Release();
        });
        // Start the input feed.
        inputTask.Start();
        // Wait until we have at least one output data event.
        await semaphore.WaitAsync();
        // Dispose the subscription.
        subscription.Dispose();
        // Keep the input feed going, before cancel. This should behave properly if the subscription is disposed of properly.
        await Task.Delay(200);
        cancelTokenSource.Cancel();
        await inputTask;
        // Make sure we really got an output data event.
        Assert.IsTrue(lastSeenSubscription > 0);
    }

from trill.

cybertyche avatar cybertyche commented on August 25, 2024

Good call on all accounts, @jmajoor. Checking in a fix shortly.

from trill.

cybertyche avatar cybertyche commented on August 25, 2024

Issue should be fixed now! Thank you for your help!

from trill.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.