< Summary - Jellyfin

Information
Class: Jellyfin.Database.Implementations.Entities.Group
Assembly: Jellyfin.Database.Implementations
File(s): /srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/Group.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 8
Coverable lines: 8
Total lines: 66
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
.ctor(...)100%210%
OnSavingChanges()100%210%

File(s)

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Implementations/Entities/Group.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.ComponentModel.DataAnnotations;
 4using Jellyfin.Database.Implementations.Interfaces;
 5
 6namespace Jellyfin.Database.Implementations.Entities
 7{
 8    /// <summary>
 9    /// An entity representing a group.
 10    /// </summary>
 11    public class Group : IHasPermissions, IHasConcurrencyToken
 12    {
 13        /// <summary>
 14        /// Initializes a new instance of the <see cref="Group"/> class.
 15        /// </summary>
 16        /// <param name="name">The name of the group.</param>
 17        public Group(string name)
 18        {
 019            ArgumentException.ThrowIfNullOrEmpty(name);
 20
 021            Name = name;
 022            Id = Guid.NewGuid();
 23
 024            Permissions = new HashSet<Permission>();
 025            Preferences = new HashSet<Preference>();
 026        }
 27
 28        /// <summary>
 29        /// Gets the id of this group.
 30        /// </summary>
 31        /// <remarks>
 32        /// Identity, Indexed, Required.
 33        /// </remarks>
 34        public Guid Id { get; private set; }
 35
 36        /// <summary>
 37        /// Gets or sets the group's name.
 38        /// </summary>
 39        /// <remarks>
 40        /// Required, Max length = 255.
 41        /// </remarks>
 42        [MaxLength(255)]
 43        [StringLength(255)]
 44        public string Name { get; set; }
 45
 46        /// <inheritdoc />
 47        [ConcurrencyCheck]
 48        public uint RowVersion { get; private set; }
 49
 50        /// <summary>
 51        /// Gets a collection containing the group's permissions.
 52        /// </summary>
 53        public virtual ICollection<Permission> Permissions { get; private set; }
 54
 55        /// <summary>
 56        /// Gets a collection containing the group's preferences.
 57        /// </summary>
 58        public virtual ICollection<Preference> Preferences { get; private set; }
 59
 60        /// <inheritdoc />
 61        public void OnSavingChanges()
 62        {
 063            RowVersion++;
 064        }
 65    }
 66}