Metadata >> NuGet >> Akka.TestKit.Xunit >> 0.7.0

0.7.0

Metadata

Authors Akka.NET Team
Copyrights Copyright © 2013-2014 Akka.NET Team
Description TestKit for writing tests for Akka.NET using xUnit.
IconUrl https://raw.githubusercontent.com/akkadotnet/akka.net/gh-pages/images/icon.png
LicenseUrl https://github.com/akkadotnet/akka.net/blob/master/LICENSE
Owners Akka.NET Team
ProjectUrl https://github.com/akkadotnet/akka.net
ReleaseNotes Major new changes and additions in this release, including some breaking changes... __Akka.Cluster__ Support (pre-release) - Akka.Cluster is now available on NuGet as a pre-release package (has a `-pre` suffix) and is available for testing. After installing the the Akka.Cluster module you can add take advantage of clustering via configuration, like so: akka { actor { provider = "Akka.Cluster.ClusterActorRefProvider, Akka.Cluster" } remote { log-remote-lifecycle-events = DEBUG helios.tcp { hostname = "127.0.0.1" port = 0 } } cluster { seed-nodes = [ "akka.tcp://ClusterSystem@127.0.0.1:2551", "akka.tcp://ClusterSystem@127.0.0.1:2552"] auto-down-unreachable-after = 10s } } And then use cluster-enabled routing on individual, named routers: /myAppRouter { router = consistent-hashing-pool nr-of-instances = 100 cluster { enabled = on max-nr-of-instances-per-node = 3 allow-local-routees = off use-role = backend } } For more information on how clustering works, please see https://github.com/akkadotnet/akka.net/pull/400 __Breaking Changes: Improved Stashing__ - The old `WithUnboundedStash` and `WithBoundedStash` interfaces have been slightly changed and the `CurrentStash` property has been renamed to `Stash`. Any old stashing code can be replaced with the following in order to continue working: public IStash CurrentStash { get { return Stash; } set { Stash=value; } } The `Stash` field is now automatically populated with an appropriate stash during the actor creation process and there is no need to set this field at all yourself. __Breaking Changes: Renamed Logger Namespaces__ - The namespaces, DLL names, and NuGet packages for all logger add-ons have been changed to `Akka.Loggers.Xyz`. Please install the latest NuGet package (and uninstall the old ones) and update your Akka HOCON configurations accordingly. __Serilog Support__ - Akka.NET now has an official [Serilog](http://serilog.net/) logger that you can install via the `Akka.Logger.Serilog` package. You can register the serilog logger via your HOCON configuration like this: loggers=["Akka.Logger.Serilog.SerilogLogger, Akka.Logger.Serilog"] __New Feature: Priority Mailbox__ - The `PriorityMailbox` allows you to define the priority of messages handled by your actors, and this is done by creating your own subclass of either the `UnboundedPriorityMailbox` or `BoundedPriorityMailbox` class and implementing the `PriorityGenerator` method like so: public class ReplayMailbox : UnboundedPriorityMailbox { protected override int PriorityGenerator(object message) { if (message is HttpResponseMessage) return 1; if (!(message is LoggedHttpRequest)) return 2; return 3; } } The smaller the return value from the `PriorityGenerator`, the higher the priority of the message. You can then configure your actors to use this mailbox via configuration, using a fully-qualified name: replay-mailbox { mailbox-type: "TrafficSimulator.PlaybackApp.Actors.ReplayMailbox,TrafficSimulator.PlaybackApp" } And from this point onward, any actor can be configured to use this mailbox via `Props`: Context.ActorOf(Props.Create<ReplayActor>() .WithRouter(new RoundRobinPool(3)) .WithMailbox("replay-mailbox")); __New Feature: Test Your Akka.NET Apps Using Akka.TestKit__ - We've refactored the testing framework used for testing Akka.NET's internals into a test-framework-agnostic NuGet package you can use for unit and integration testing your own Akka.NET apps. Right now we're scarce on documentation so you'll want to take a look at the tests inside the Akka.NET source for reference. Right now we have Akka.TestKit adapters for both MSTest and XUnit, which you can install to your own project via the following: MSTest: install-package Akka.TestKit.VsTest XUnit: install-package Akka.TestKit.Xunit
RequireLicenseAcceptance False
Tags akka actors actor model Akka concurrency xUnit
Dependencies xunit:1.9.2|Akka.TestKit:0.7.0
Title Akka.TestKit.Xunit - BETA
PackageSize 20063
PackageHashAlgorithm SHA512
PackageHash itjYVjwnfKJwCVEsBmCDzi6EL/C/qL8i80BL2/itscbliDXDyVrBysFBvmqINZz7dUUcts2fdmiVrsiuFwhI7Q==
DownloadCount 000000
CreatedDate 2014-10-20T19:48:58

Access

You can access data for this version using the tools and addresses described below.

NuGet (nuget.exe)

Installing the package (HTTP Basic authentication):
nuget install Akka.TestKit.Xunit -Version 0.7.0 -Source     http://nuget.gw.symbolsource.org/Public/NuGet/FeedService.mvc
Installing the package (pre-authenticated):
nuget install Akka.TestKit.Xunit -Version 0.7.0 -Source     http://nuget.gw.symbolsource.org/Public/%login%/%key%/NuGet/FeedService.mvc
Deleting the package from the server (for each registered key):
nuget delete Akka.TestKit.Xunit 0.7.0 %key% -Source     http://nuget.gw.symbolsource.org/Public/NuGet

NuGet (Package Manager Console)

Installing the package (HTTP Basic authentication):
Install-Package Akka.TestKit.Xunit -Version 0.7.0 -Source     http://nuget.gw.symbolsource.org/Public/NuGet/FeedService.mvc
Installing the package (pre-authenticated):
Install-Package Akka.TestKit.Xunit -Version 0.7.0 -Source     http://nuget.gw.symbolsource.org/Public/%login%/%key%/NuGet/FeedService.mvc

OpenWrap

Installing the package:
o add-wrap Akka.TestKit.Xunit -Version 0.7.0
Uninstalling the package:
o remove-wrap Akka.TestKit.Xunit

Compilations

A compilation is created for every set of binaries produced from a single unchanged set of sources in different compilation modes (Debug, Release), for different platforms (x86, x64) or targetting different frameworks.

Profile Mode Platform Related
AnyCPU Release .NETFramework,Version=v4.5 Binaries