File: boost_asio.cpp

package info (click to toggle)
lager 0.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,888 kB
  • sloc: cpp: 10,602; javascript: 10,433; makefile: 214; python: 100; sh: 98
file content (52 lines) | stat: -rw-r--r-- 1,607 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// lager - library for functional interactive c++ programs
// Copyright (C) 2017 Juan Pedro Bolivar Puente
//
// This file is part of lager.
//
// lager is free software: you can redistribute it and/or modify
// it under the terms of the MIT License, as detailed in the LICENSE
// file located at the root of this source code distribution,
// or here: <https://github.com/arximboldi/lager/blob/master/LICENSE>
//

#include <catch2/catch.hpp>

#include <lager/event_loop/boost_asio.hpp>
#include <lager/store.hpp>

#include "example/counter/counter.hpp"

TEST_CASE("basic")
{
    auto ctx   = boost::asio::io_context{};
    auto store = lager::make_store<counter::action>(
        counter::model{},
        lager::with_boost_asio_event_loop{ctx.get_executor()});
    store.dispatch(counter::increment_action{});
    ctx.run();
    CHECK(store->value == 1);
}

TEST_CASE("strand")
{
    auto ctx    = boost::asio::io_context{};
    auto strand = boost::asio::io_context::strand{ctx};
    auto store  = lager::make_store<counter::action>(
        counter::model{}, lager::with_boost_asio_event_loop{strand});
    store.dispatch(counter::increment_action{});
    ctx.run();
    CHECK(store->value == 1);
}

TEST_CASE("modern strand")
{
    auto ctx    = boost::asio::io_context{};
    auto strand = boost::asio::strand<boost::asio::io_context::executor_type>{
        ctx.get_executor()};
    auto store = lager::make_store<counter::action>(
        counter::model{}, lager::with_boost_asio_event_loop{strand});
    store.dispatch(counter::increment_action{});
    ctx.run();
    CHECK(store->value == 1);
}