Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/JsonApiDotNetCore/Middleware/JsonApiRoutingConvention.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ public void Apply(ApplicationModel application)
{
if (_controllerPerResourceTypeMap.ContainsKey(resourceType))
{
throw new InvalidConfigurationException($"Multiple controllers found for resource type '{resourceType}'.");
throw new InvalidConfigurationException(
$"Multiple controllers found for resource type '{resourceType}': '{_controllerPerResourceTypeMap[resourceType].ControllerType}' and '{controller.ControllerType}'.");
}

_resourceTypePerControllerTypeMap.Add(controller.ControllerType, resourceType);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ public void Fails_at_startup_when_multiple_controllers_exist_for_same_resource_t
Action action = () => _ = Factory;

// Assert
action.Should().ThrowExactly<InvalidConfigurationException>().WithMessage("Multiple controllers found for resource type 'knownResources'.");
InvalidConfigurationException exception = action.Should().ThrowExactly<InvalidConfigurationException>().Which!;
exception.Message.Should().StartWith("Multiple controllers found for resource type 'knownResources': ");
exception.Message.Should().Contain($"'{typeof(KnownResourcesController).FullName}'");
exception.Message.Should().Contain($"'{typeof(DuplicateKnownResourcesController).FullName}'");
}
}