< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Extensions.LibraryOptionsExtension
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Extensions/LibraryOptionsExtension.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 13
Coverable lines: 13
Total lines: 34
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
GetCustomTagDelimiters(...)100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Extensions/LibraryOptionsExtension.cs

#LineLine coverage
 1using System;
 2using System.Linq;
 3using MediaBrowser.Model.Configuration;
 4
 5namespace MediaBrowser.Model.Extensions;
 6
 7/// <summary>
 8/// Extensions for <see cref="LibraryOptions"/>.
 9/// </summary>
 10public static class LibraryOptionsExtension
 11{
 12    /// <summary>
 13    /// Get the custom tag delimiters.
 14    /// </summary>
 15    /// <param name="options">This LibraryOptions.</param>
 16    /// <returns>CustomTagDelimiters in char[].</returns>
 17    public static char[] GetCustomTagDelimiters(this LibraryOptions options)
 18    {
 019        ArgumentNullException.ThrowIfNull(options);
 20
 021        var delimiterList = options.CustomTagDelimiters.Select<string, char?>(x =>
 022        {
 023            var isChar = char.TryParse(x, out var c);
 024            if (isChar)
 025            {
 026                return c;
 027            }
 028
 029            return null;
 030        }).Where(x => x is not null).Select(x => x!.Value).ToList();
 031        delimiterList.Add('\0');
 032        return delimiterList.ToArray();
 33    }
 34}