Esempio n. 1
0
 public ResourceSerializer(
     object value,
     ApiResource type,
     Uri baseUrl,
     IUrlPathBuilder urlBuilder,
     PaginationContext paginationContext,
     IncludeContext includeContext,
     FieldsetContext fieldsetContext,
     IPropertyNameConverter propertyNameConverter = null)
 {
     _propertyNameConverter = propertyNameConverter ?? new DefaultPropertyNameConverter();
     _urlBuilder            = urlBuilder;
     _resource           = type;
     _value              = value;
     _baseUrl            = baseUrl;
     _paginationContext  = paginationContext;
     _includeContext     = includeContext;
     _fieldsetContext    = fieldsetContext;
     _includedGraphPaths = IncludedGraphPathsFromContext(includeContext);
 }
Esempio n. 2
0
        public async Task ProcessAsync_ParentAlreadyHasLegend_ThrowsInvalidOperationException()
        {
            // Arrange
            var fieldsetContext = new FieldsetContext();

            fieldsetContext.SetLegend(
                isPageHeading: false,
                attributes: null,
                content: new HtmlString("Existing legend"));

            var context = new TagHelperContext(
                tagName: "govuk-fieldset-legend",
                allAttributes: new TagHelperAttributeList(),
                items: new Dictionary <object, object>()
            {
                { typeof(FieldsetContext), fieldsetContext }
            },
                uniqueId: "test");

            var output = new TagHelperOutput(
                "govuk-fieldset-legend",
                attributes: new TagHelperAttributeList(),
                getChildContentAsync: (useCachedResult, encoder) =>
            {
                var tagHelperContent = new DefaultTagHelperContent();
                tagHelperContent.SetContent("Legend content");
                return(Task.FromResult <TagHelperContent>(tagHelperContent));
            });

            var tagHelper = new FieldsetLegendTagHelper()
            {
                IsPageHeading = true
            };

            // Act
            var ex = await Record.ExceptionAsync(() => tagHelper.ProcessAsync(context, output));

            // Assert
            Assert.IsType <InvalidOperationException>(ex);
            Assert.Equal("Only one <govuk-fieldset-legend> element is permitted within each <govuk-fieldset>.", ex.Message);
        }
Esempio n. 3
0
        public async Task ProcessAsync_AddsLegendToContext()
        {
            // Arrange
            var fieldsetContext = new FieldsetContext();

            var context = new TagHelperContext(
                tagName: "govuk-fieldset-legend",
                allAttributes: new TagHelperAttributeList(),
                items: new Dictionary <object, object>()
            {
                { typeof(FieldsetContext), fieldsetContext }
            },
                uniqueId: "test");

            var output = new TagHelperOutput(
                "govuk-fieldset-legend",
                attributes: new TagHelperAttributeList(),
                getChildContentAsync: (useCachedResult, encoder) =>
            {
                var tagHelperContent = new DefaultTagHelperContent();
                tagHelperContent.SetContent("Legend content");
                return(Task.FromResult <TagHelperContent>(tagHelperContent));
            });

            var tagHelper = new FieldsetLegendTagHelper()
            {
                IsPageHeading = true
            };

            // Act
            await tagHelper.ProcessAsync(context, output);

            // Assert
            Assert.Equal("Legend content", fieldsetContext.Legend?.Content.RenderToString());
            Assert.True(fieldsetContext.Legend?.IsPageHeading);
        }