|
| 1 | +using Htmx.TagHelpers; |
| 2 | +using Microsoft.AspNetCore.Mvc.Rendering; |
| 3 | +using Microsoft.AspNetCore.Razor.TagHelpers; |
| 4 | +using System.Collections.Generic; |
| 5 | +using System.Text.Json; |
| 6 | +using System.Text.Json.Nodes; |
| 7 | +using System.Threading.Tasks; |
| 8 | +using Xunit; |
| 9 | + |
| 10 | +namespace Htmx.Tests.TagHelpers |
| 11 | +{ |
| 12 | + public class HtmxHeadersTagHelperTests |
| 13 | + { |
| 14 | + private readonly HtmxHeadersTagHelper _tagHelper; |
| 15 | + private readonly TagHelperContext _context; |
| 16 | + private readonly TagHelperOutput _output; |
| 17 | + |
| 18 | + public HtmxHeadersTagHelperTests() |
| 19 | + { |
| 20 | + _tagHelper = new HtmxHeadersTagHelper(); |
| 21 | + |
| 22 | + _context = new TagHelperContext( |
| 23 | + new TagHelperAttributeList(), |
| 24 | + new Dictionary<object, object>(), |
| 25 | + "test_unique_id"); |
| 26 | + |
| 27 | + _output = new TagHelperOutput( |
| 28 | + "div", |
| 29 | + new TagHelperAttributeList(), |
| 30 | + (useCachedResult, encoder) => |
| 31 | + { |
| 32 | + var tagHelperContent = new DefaultTagHelperContent(); |
| 33 | + var tagBuilder = new TagBuilder("div"); |
| 34 | + tagBuilder.Attributes.Add("hx-post", "url"); |
| 35 | + tagHelperContent.SetHtmlContent(tagBuilder); |
| 36 | + return Task.FromResult<TagHelperContent>(tagHelperContent); |
| 37 | + }); |
| 38 | + } |
| 39 | + |
| 40 | + [Fact] |
| 41 | + public void Is_HeaderAttributes_NotNull() |
| 42 | + { |
| 43 | + Assert.NotNull(_tagHelper.HeaderAttributes); |
| 44 | + Assert.Empty(_tagHelper.HeaderAttributes); |
| 45 | + } |
| 46 | + |
| 47 | + [Fact] |
| 48 | + public void Process_AddsHeadersAttribute_WhenNoExistingHeadersAndHeaderAttributesPresent() |
| 49 | + { |
| 50 | + // Arrange |
| 51 | + _tagHelper.HeaderAttributes.Add("Key1", "Value1"); |
| 52 | + _tagHelper.HeaderAttributes.Add("Key2", "Value2"); |
| 53 | + |
| 54 | + // Act |
| 55 | + _tagHelper.Process(_context, _output); |
| 56 | + |
| 57 | + // Assert |
| 58 | + Assert.True(_output.Attributes.TryGetAttribute("hx-headers", out var headersAttribute)); |
| 59 | + Assert.NotNull(headersAttribute); |
| 60 | + |
| 61 | + var json = JsonSerializer.Deserialize<JsonObject>(headersAttribute.Value.ToString()!)!; |
| 62 | + Assert.Equal("Value1", json["Key1"]!.GetValue<string>()); |
| 63 | + Assert.Equal("Value2", json["Key2"]!.GetValue<string>()); |
| 64 | + } |
| 65 | + |
| 66 | + [Fact] |
| 67 | + public void Process_DoesNotAddHeadersAttribute_WhenExistingHeadersPresent() |
| 68 | + { |
| 69 | + // Arrange |
| 70 | + var existingHeaders = new TagHelperAttribute("hx-headers", "{\"ExistingKey1\":\"ExistingValue1\"}"); |
| 71 | + _output.Attributes.Add(existingHeaders); |
| 72 | + |
| 73 | + // Act |
| 74 | + _tagHelper.Process(_context, _output); |
| 75 | + |
| 76 | + // Assert |
| 77 | + var json = JsonSerializer.Deserialize<JsonObject>(_output.Attributes["hx-headers"].Value.ToString()!)!; |
| 78 | + Assert.Equal("ExistingValue1", json["ExistingKey1"]!.GetValue<string>()); |
| 79 | + } |
| 80 | + |
| 81 | + [Fact] |
| 82 | + public void Process_DoesNotAddHeadersAttribute_WhenNoHeaderAttributes() |
| 83 | + { |
| 84 | + // Act |
| 85 | + _tagHelper.Process(_context, _output); |
| 86 | + |
| 87 | + // Assert |
| 88 | + Assert.False(_output.Attributes.TryGetAttribute("hx-headers", out _)); |
| 89 | + } |
| 90 | + } |
| 91 | + |
| 92 | +} |
0 commit comments