Ejemplo n.º 1
0
 /// <summary>
 /// Tests whether the action result is <see cref="Microsoft.AspNetCore.Mvc.ContentResult"/>
 /// with the same content and content type as the provided ones.
 /// </summary>
 /// <typeparam name="TActionResult">Type of the action result.</typeparam>
 /// <param name="shouldReturnTestBuilder">Instance of <see cref="IShouldReturnTestBuilder{TActionResult}"/> type.</param>
 /// <param name="content">Expected content as string.</param>
 /// <param name="contentType">Expected content type as <see cref="MediaTypeHeaderValue"/>.</param>
 /// <returns>Test builder of <see cref="IAndTestBuilder"/> type.</returns>
 public static IAndTestBuilder Content <TActionResult>(
     this IShouldReturnTestBuilder <TActionResult> shouldReturnTestBuilder,
     string content,
     MediaTypeHeaderValue contentType)
 => shouldReturnTestBuilder
 .Content(result => result
          .WithContent(content)
          .WithContentType(contentType));
Ejemplo n.º 2
0
        /// <summary>
        /// Tests whether the action result is <see cref="Microsoft.AspNetCore.Mvc.ContentResult"/>
        /// with the same content and content type as the provided ones.
        /// </summary>
        /// <typeparam name="TActionResult">Type of the action result.</typeparam>
        /// <param name="shouldReturnTestBuilder">Instance of <see cref="IShouldReturnTestBuilder{TActionResult}"/> type.</param>
        /// <param name="content">Expected content as string.</param>
        /// <param name="contentType">Expected content type as string.</param>
        /// <param name="contentEncoding">Expected content encoding as <see cref="Encoding"/>.</param>
        /// <returns>Test builder of <see cref="IAndTestBuilder"/> type.</returns>
        public static IAndTestBuilder Content <TActionResult>(
            this IShouldReturnTestBuilder <TActionResult> shouldReturnTestBuilder,
            string content,
            string contentType,
            Encoding contentEncoding)
        {
            var mediaTypeHeaderValue = MediaTypeHeaderValue.Parse(contentType);

            mediaTypeHeaderValue.Encoding = contentEncoding ?? mediaTypeHeaderValue.Encoding;

            return(shouldReturnTestBuilder.Content(content, mediaTypeHeaderValue));
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Tests whether the action result is <see cref="Microsoft.AspNetCore.Mvc.ContentResult"/>
 /// with the same content as the provided one.
 /// </summary>
 /// <typeparam name="TActionResult">Type of the action result.</typeparam>
 /// <param name="shouldReturnTestBuilder">Instance of <see cref="IShouldReturnTestBuilder{TActionResult}"/> type.</param>
 /// <param name="content">Expected content as string.</param>
 /// <returns>Test builder of <see cref="IAndTestBuilder"/> type.</returns>
 public static IAndTestBuilder Content <TActionResult>(
     this IShouldReturnTestBuilder <TActionResult> shouldReturnTestBuilder,
     string content)
 => shouldReturnTestBuilder
 .Content(content, (MediaTypeHeaderValue)null);