-
Notifications
You must be signed in to change notification settings - Fork 32
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
Formatting of Extra Property #218
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||
using System.Collections; | ||||||||||||||||||||||||||||||||||||||||||||||||||
using System.Collections; | ||||||||||||||||||||||||||||||||||||||||||||||||||
using Deepgram.Models.PreRecorded.v1; | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
namespace Deepgram.Utilities; | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -39,7 +39,18 @@ private static string UrlEncode<T>(T parameters, IEnumerable<PropertyInfo> prope | |||||||||||||||||||||||||||||||||||||||||||||||||
case DateTime time: | ||||||||||||||||||||||||||||||||||||||||||||||||||
sb.Append($"{name}={HttpUtility.UrlEncode(time.ToString("yyyy-MM-dd"))}&"); | ||||||||||||||||||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||
//specific case for the Extra Parameter dictionary to format the querystring correctly | ||||||||||||||||||||||||||||||||||||||||||||||||||
//no case changing of the key or values as theses are unknowns and the casing may have | ||||||||||||||||||||||||||||||||||||||||||||||||||
//significance to the user | ||||||||||||||||||||||||||||||||||||||||||||||||||
case Dictionary<string, string> dict: | ||||||||||||||||||||||||||||||||||||||||||||||||||
if (name == "extra") | ||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||
foreach (var kvp in dict) | ||||||||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||||||||
sb.Append($"{name}={HttpUtility.UrlEncode($"{kvp.Key}:{kvp.Value}")}&"); | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+42
to
+53
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The implementation for handling - sb.Append($"{name}={HttpUtility.UrlEncode($"{kvp.Key}:{kvp.Value}")}&");
+ sb.Append($"{name}={Uri.EscapeDataString($"{kvp.Key}:{kvp.Value}")}&"); Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||
sb.Append($"{name}={HttpUtility.UrlEncode(pValue.ToString().ToLower())}&"); | ||||||||||||||||||||||||||||||||||||||||||||||||||
break; | ||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The test
GetParameters_Should_Return_String_When_Passing_Dictonary_Parameter
correctly asserts the functionality for handling dictionary parameters. However, the expected string construction does not account for the order in which dictionary entries might be processed, which could lead to flaky tests if the dictionary iteration order is not consistent. Consider using a more flexible assertion that checks for the presence of each key-value pair in the result, regardless of order.Committable suggestion