Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Making Culture Invariant When Validating Date to negate deferent formats #17257

Merged
merged 2 commits into from
Oct 12, 2024

Conversation

IbrahimMNada
Copy link
Contributor

Prerequisites

  • I have added steps to test this contribution in the description below

If there's an existing issue for this PR then this fixes

Description

when having languages such as Arabic as the default culture UI .Net automatic changes the Time format to Hjiri.
this caused an issue in the back-end validation for all datatype
as Peer the bug #17253

To fix this I just make the convert statement in datetime fallback to the default format which is the old good gregorian format

image

To Test This:

  1. Create a new Document type that has date time picker.
  2. logout then login for language cookie to reset
  3. Make Your Back office default UI Culture Arabic ==> العربية
  4. Create a new node from that document type and fill the date
  5. Click save and publish successfully

Copy link

github-actions bot commented Oct 12, 2024

Hi there @IbrahimMNada, thank you for this contribution! 👍

While we wait for one of the Core Collaborators team to have a look at your work, we wanted to let you know about that we have a checklist for some of the things we will consider during review:

  • It's clear what problem this is solving, there's a connected issue or a description of what the changes do and how to test them
  • The automated tests all pass (see "Checks" tab on this PR)
  • The level of security for this contribution is the same or improved
  • The level of performance for this contribution is the same or improved
  • Avoids creating breaking changes; note that behavioral changes might also be perceived as breaking
  • If this is a new feature, Umbraco HQ provided guidance on the implementation beforehand
  • 💡 The contribution looks original and the contributor is presumably allowed to share it

Don't worry if you got something wrong. We like to think of a pull request as the start of a conversation, we're happy to provide guidance on improving your contribution.

If you realize that you might want to make some changes then you can do that by adding new commits to the branch you created for this work and pushing new commits. They should then automatically show up as updates to this pull request.

Thanks, from your friendly Umbraco GitHub bot 🤖 🙂

@Matthew-Wise
Copy link
Contributor

Hi @IbrahimMNada Thanks for the PR one of the community team will look at this as soon as possible

Matt

@Matthew-Wise
Copy link
Contributor

Hi @IbrahimMNada I have been trying to replicate this issue, I did notice on the issue you mention your system language is ar-SA which might be a reason I cant replicate the issue :)

I have written a unit test which I think should replicate it but its passing every time.

I was wondering if you could give it a go and/or use this to replicate the issue

using System.Globalization;
using NUnit.Framework;
using Umbraco.Cms.Core.PropertyEditors.Validators;

namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Core.PropertyEditors.Validators;

[TestFixture]
public class DateTimeValidatorTests
{
    [TestCase("en-US", "yyyy-MM-dd HH:mm:ss", TestName = "US Thread, DateTimeValidator")]
    [TestCase("en-US", "dd-MM-yyyy HH:mm:ss", TestName = "US Thread, DateTimeValidator ar-SA format")]
    [TestCase("ar-SA", "dd-MM-yyyy HH:mm:ss", TestName = "Arabian Saudi Thread, DateTimeValidator")]
    [TestCase("ar-SA", "yyyy-MM-dd HH:mm:ss", TestName = "Arabian Saudi Thread, DateTimeValidator US format")]
    public void DateTimeValidatorIsCultureInvariant(string culture, string format)
    {
        var dateString = DateTime.Now.ToString(format);

        var cultureInfo = new CultureInfo(culture);
        Thread.CurrentThread.CurrentCulture = cultureInfo;
        Thread.CurrentThread.CurrentUICulture = cultureInfo;

        var validator = new DateTimeValidator();
        var validationResults = validator.Validate(dateString, "DATETIME", new Dictionary<string, object>
        {
            ["format"] = format
        });
        CollectionAssert.IsEmpty(validationResults);
    }
}

@Matthew-Wise Matthew-Wise self-assigned this Oct 12, 2024
@Matthew-Wise
Copy link
Contributor

Is your database language in US? As there was a similar issue recently where this was the cause

Thanks
Matt

@IbrahimMNada
Copy link
Contributor Author

Hello @Matthew-Wise , thanks for the reply ,

Just to make things clear , My System language is English , But my region is set to Saudi as the this image implies i think you could replicate this once you temporally set your region to Saudi (sorry for not mention that in the bug as I just found out about this)

image

Regarding the tests I will run them Right now.

And regarding the database my answer is : No , my data base is in English language but i think its the same situation with the region thingy , so if you need any further help with other bugs i will be more than happy to help

@IbrahimMNada
Copy link
Contributor Author

IbrahimMNada commented Oct 12, 2024

Tests are all passed on the same machine Caused the Issue

Test with The Fix

image

I reverted my fix to previous and ran the test it failed when it came to Arabic
so i think we're good

Test When reverted The Fix

image

@Matthew-Wise
Copy link
Contributor

Thank @IbrahimMNada for getting back so fast and adding the unit tests :D

Lets get this merged and tagged up

Matt

@Matthew-Wise Matthew-Wise merged commit dabaeac into umbraco:contrib Oct 12, 2024
4 of 6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Saving & Publishing a Node with Date property is not working when date input has value (Hijri Arabian Date)
2 participants