< Summary - Jellyfin

Line coverage
97%
Covered lines: 489
Uncovered lines: 11
Coverable lines: 500
Total lines: 555
Line coverage: 97.8%
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
File 1: Up(...)100%11100%
File 1: Down(...)100%210%
File 2: BuildTargetModel(...)100%11100%

File(s)

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20210407110544_NullableCustomPrefValue.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2// <auto-generated />
 3using Microsoft.EntityFrameworkCore.Migrations;
 4
 5namespace Jellyfin.Server.Implementations.Migrations
 6{
 7    public partial class NullableCustomPrefValue : Migration
 8    {
 9        protected override void Up(MigrationBuilder migrationBuilder)
 10        {
 2111            migrationBuilder.AlterColumn<string>(
 2112                name: "Value",
 2113                schema: "jellyfin",
 2114                table: "CustomItemDisplayPreferences",
 2115                type: "TEXT",
 2116                nullable: true,
 2117                oldClrType: typeof(string),
 2118                oldType: "TEXT");
 2119        }
 20
 21        protected override void Down(MigrationBuilder migrationBuilder)
 22        {
 023            migrationBuilder.AlterColumn<string>(
 024                name: "Value",
 025                schema: "jellyfin",
 026                table: "CustomItemDisplayPreferences",
 027                type: "TEXT",
 028                nullable: false,
 029                defaultValue: "",
 030                oldClrType: typeof(string),
 031                oldType: "TEXT",
 032                oldNullable: true);
 033        }
 34    }
 35}

/srv/git/jellyfin/src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/20210407110544_NullableCustomPrefValue.Designer.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2// <auto-generated />
 3using System;
 4using Jellyfin.Database.Implementations;
 5using Microsoft.EntityFrameworkCore;
 6using Microsoft.EntityFrameworkCore.Infrastructure;
 7using Microsoft.EntityFrameworkCore.Migrations;
 8using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
 9
 10namespace Jellyfin.Server.Implementations.Migrations
 11{
 12    [DbContext(typeof(JellyfinDbContext))]
 13    [Migration("20210407110544_NullableCustomPrefValue")]
 14    partial class NullableCustomPrefValue
 15    {
 16        protected override void BuildTargetModel(ModelBuilder modelBuilder)
 17        {
 18#pragma warning disable 612, 618
 2119            modelBuilder
 2120                .HasDefaultSchema("jellyfin")
 2121                .HasAnnotation("ProductVersion", "5.0.3");
 22
 2123            modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
 2124                {
 2125                    b.Property<int>("Id")
 2126                        .ValueGeneratedOnAdd()
 2127                        .HasColumnType("INTEGER");
 2128
 2129                    b.Property<int>("DayOfWeek")
 2130                        .HasColumnType("INTEGER");
 2131
 2132                    b.Property<double>("EndHour")
 2133                        .HasColumnType("REAL");
 2134
 2135                    b.Property<double>("StartHour")
 2136                        .HasColumnType("REAL");
 2137
 2138                    b.Property<Guid>("UserId")
 2139                        .HasColumnType("TEXT");
 2140
 2141                    b.HasKey("Id");
 2142
 2143                    b.HasIndex("UserId");
 2144
 2145                    b.ToTable("AccessSchedules");
 2146                });
 47
 2148            modelBuilder.Entity("Jellyfin.Data.Entities.ActivityLog", b =>
 2149                {
 2150                    b.Property<int>("Id")
 2151                        .ValueGeneratedOnAdd()
 2152                        .HasColumnType("INTEGER");
 2153
 2154                    b.Property<DateTime>("DateCreated")
 2155                        .HasColumnType("TEXT");
 2156
 2157                    b.Property<string>("ItemId")
 2158                        .HasMaxLength(256)
 2159                        .HasColumnType("TEXT");
 2160
 2161                    b.Property<int>("LogSeverity")
 2162                        .HasColumnType("INTEGER");
 2163
 2164                    b.Property<string>("Name")
 2165                        .IsRequired()
 2166                        .HasMaxLength(512)
 2167                        .HasColumnType("TEXT");
 2168
 2169                    b.Property<string>("Overview")
 2170                        .HasMaxLength(512)
 2171                        .HasColumnType("TEXT");
 2172
 2173                    b.Property<uint>("RowVersion")
 2174                        .IsConcurrencyToken()
 2175                        .HasColumnType("INTEGER");
 2176
 2177                    b.Property<string>("ShortOverview")
 2178                        .HasMaxLength(512)
 2179                        .HasColumnType("TEXT");
 2180
 2181                    b.Property<string>("Type")
 2182                        .IsRequired()
 2183                        .HasMaxLength(256)
 2184                        .HasColumnType("TEXT");
 2185
 2186                    b.Property<Guid>("UserId")
 2187                        .HasColumnType("TEXT");
 2188
 2189                    b.HasKey("Id");
 2190
 2191                    b.ToTable("ActivityLogs");
 2192                });
 93
 2194            modelBuilder.Entity("Jellyfin.Data.Entities.CustomItemDisplayPreferences", b =>
 2195                {
 2196                    b.Property<int>("Id")
 2197                        .ValueGeneratedOnAdd()
 2198                        .HasColumnType("INTEGER");
 2199
 21100                    b.Property<string>("Client")
 21101                        .IsRequired()
 21102                        .HasMaxLength(32)
 21103                        .HasColumnType("TEXT");
 21104
 21105                    b.Property<Guid>("ItemId")
 21106                        .HasColumnType("TEXT");
 21107
 21108                    b.Property<string>("Key")
 21109                        .IsRequired()
 21110                        .HasColumnType("TEXT");
 21111
 21112                    b.Property<Guid>("UserId")
 21113                        .HasColumnType("TEXT");
 21114
 21115                    b.Property<string>("Value")
 21116                        .HasColumnType("TEXT");
 21117
 21118                    b.HasKey("Id");
 21119
 21120                    b.HasIndex("UserId");
 21121
 21122                    b.HasIndex("UserId", "ItemId", "Client", "Key")
 21123                        .IsUnique();
 21124
 21125                    b.ToTable("CustomItemDisplayPreferences");
 21126                });
 127
 21128            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21129                {
 21130                    b.Property<int>("Id")
 21131                        .ValueGeneratedOnAdd()
 21132                        .HasColumnType("INTEGER");
 21133
 21134                    b.Property<int>("ChromecastVersion")
 21135                        .HasColumnType("INTEGER");
 21136
 21137                    b.Property<string>("Client")
 21138                        .IsRequired()
 21139                        .HasMaxLength(32)
 21140                        .HasColumnType("TEXT");
 21141
 21142                    b.Property<string>("DashboardTheme")
 21143                        .HasMaxLength(32)
 21144                        .HasColumnType("TEXT");
 21145
 21146                    b.Property<bool>("EnableNextVideoInfoOverlay")
 21147                        .HasColumnType("INTEGER");
 21148
 21149                    b.Property<int?>("IndexBy")
 21150                        .HasColumnType("INTEGER");
 21151
 21152                    b.Property<Guid>("ItemId")
 21153                        .HasColumnType("TEXT");
 21154
 21155                    b.Property<int>("ScrollDirection")
 21156                        .HasColumnType("INTEGER");
 21157
 21158                    b.Property<bool>("ShowBackdrop")
 21159                        .HasColumnType("INTEGER");
 21160
 21161                    b.Property<bool>("ShowSidebar")
 21162                        .HasColumnType("INTEGER");
 21163
 21164                    b.Property<int>("SkipBackwardLength")
 21165                        .HasColumnType("INTEGER");
 21166
 21167                    b.Property<int>("SkipForwardLength")
 21168                        .HasColumnType("INTEGER");
 21169
 21170                    b.Property<string>("TvHome")
 21171                        .HasMaxLength(32)
 21172                        .HasColumnType("TEXT");
 21173
 21174                    b.Property<Guid>("UserId")
 21175                        .HasColumnType("TEXT");
 21176
 21177                    b.HasKey("Id");
 21178
 21179                    b.HasIndex("UserId");
 21180
 21181                    b.HasIndex("UserId", "ItemId", "Client")
 21182                        .IsUnique();
 21183
 21184                    b.ToTable("DisplayPreferences");
 21185                });
 186
 21187            modelBuilder.Entity("Jellyfin.Data.Entities.HomeSection", b =>
 21188                {
 21189                    b.Property<int>("Id")
 21190                        .ValueGeneratedOnAdd()
 21191                        .HasColumnType("INTEGER");
 21192
 21193                    b.Property<int>("DisplayPreferencesId")
 21194                        .HasColumnType("INTEGER");
 21195
 21196                    b.Property<int>("Order")
 21197                        .HasColumnType("INTEGER");
 21198
 21199                    b.Property<int>("Type")
 21200                        .HasColumnType("INTEGER");
 21201
 21202                    b.HasKey("Id");
 21203
 21204                    b.HasIndex("DisplayPreferencesId");
 21205
 21206                    b.ToTable("HomeSection");
 21207                });
 208
 21209            modelBuilder.Entity("Jellyfin.Data.Entities.ImageInfo", b =>
 21210                {
 21211                    b.Property<int>("Id")
 21212                        .ValueGeneratedOnAdd()
 21213                        .HasColumnType("INTEGER");
 21214
 21215                    b.Property<DateTime>("LastModified")
 21216                        .HasColumnType("TEXT");
 21217
 21218                    b.Property<string>("Path")
 21219                        .IsRequired()
 21220                        .HasMaxLength(512)
 21221                        .HasColumnType("TEXT");
 21222
 21223                    b.Property<Guid?>("UserId")
 21224                        .HasColumnType("TEXT");
 21225
 21226                    b.HasKey("Id");
 21227
 21228                    b.HasIndex("UserId")
 21229                        .IsUnique();
 21230
 21231                    b.ToTable("ImageInfos");
 21232                });
 233
 21234            modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
 21235                {
 21236                    b.Property<int>("Id")
 21237                        .ValueGeneratedOnAdd()
 21238                        .HasColumnType("INTEGER");
 21239
 21240                    b.Property<string>("Client")
 21241                        .IsRequired()
 21242                        .HasMaxLength(32)
 21243                        .HasColumnType("TEXT");
 21244
 21245                    b.Property<int?>("IndexBy")
 21246                        .HasColumnType("INTEGER");
 21247
 21248                    b.Property<Guid>("ItemId")
 21249                        .HasColumnType("TEXT");
 21250
 21251                    b.Property<bool>("RememberIndexing")
 21252                        .HasColumnType("INTEGER");
 21253
 21254                    b.Property<bool>("RememberSorting")
 21255                        .HasColumnType("INTEGER");
 21256
 21257                    b.Property<string>("SortBy")
 21258                        .IsRequired()
 21259                        .HasMaxLength(64)
 21260                        .HasColumnType("TEXT");
 21261
 21262                    b.Property<int>("SortOrder")
 21263                        .HasColumnType("INTEGER");
 21264
 21265                    b.Property<Guid>("UserId")
 21266                        .HasColumnType("TEXT");
 21267
 21268                    b.Property<int>("ViewType")
 21269                        .HasColumnType("INTEGER");
 21270
 21271                    b.HasKey("Id");
 21272
 21273                    b.HasIndex("UserId");
 21274
 21275                    b.ToTable("ItemDisplayPreferences");
 21276                });
 277
 21278            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 21279                {
 21280                    b.Property<int>("Id")
 21281                        .ValueGeneratedOnAdd()
 21282                        .HasColumnType("INTEGER");
 21283
 21284                    b.Property<int>("Kind")
 21285                        .HasColumnType("INTEGER");
 21286
 21287                    b.Property<Guid?>("Permission_Permissions_Guid")
 21288                        .HasColumnType("TEXT");
 21289
 21290                    b.Property<uint>("RowVersion")
 21291                        .IsConcurrencyToken()
 21292                        .HasColumnType("INTEGER");
 21293
 21294                    b.Property<bool>("Value")
 21295                        .HasColumnType("INTEGER");
 21296
 21297                    b.HasKey("Id");
 21298
 21299                    b.HasIndex("Permission_Permissions_Guid");
 21300
 21301                    b.ToTable("Permissions");
 21302                });
 303
 21304            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 21305                {
 21306                    b.Property<int>("Id")
 21307                        .ValueGeneratedOnAdd()
 21308                        .HasColumnType("INTEGER");
 21309
 21310                    b.Property<int>("Kind")
 21311                        .HasColumnType("INTEGER");
 21312
 21313                    b.Property<Guid?>("Preference_Preferences_Guid")
 21314                        .HasColumnType("TEXT");
 21315
 21316                    b.Property<uint>("RowVersion")
 21317                        .IsConcurrencyToken()
 21318                        .HasColumnType("INTEGER");
 21319
 21320                    b.Property<string>("Value")
 21321                        .IsRequired()
 21322                        .HasMaxLength(65535)
 21323                        .HasColumnType("TEXT");
 21324
 21325                    b.HasKey("Id");
 21326
 21327                    b.HasIndex("Preference_Preferences_Guid");
 21328
 21329                    b.ToTable("Preferences");
 21330                });
 331
 21332            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 21333                {
 21334                    b.Property<Guid>("Id")
 21335                        .ValueGeneratedOnAdd()
 21336                        .HasColumnType("TEXT");
 21337
 21338                    b.Property<string>("AudioLanguagePreference")
 21339                        .HasMaxLength(255)
 21340                        .HasColumnType("TEXT");
 21341
 21342                    b.Property<string>("AuthenticationProviderId")
 21343                        .IsRequired()
 21344                        .HasMaxLength(255)
 21345                        .HasColumnType("TEXT");
 21346
 21347                    b.Property<bool>("DisplayCollectionsView")
 21348                        .HasColumnType("INTEGER");
 21349
 21350                    b.Property<bool>("DisplayMissingEpisodes")
 21351                        .HasColumnType("INTEGER");
 21352
 21353                    b.Property<string>("EasyPassword")
 21354                        .HasMaxLength(65535)
 21355                        .HasColumnType("TEXT");
 21356
 21357                    b.Property<bool>("EnableAutoLogin")
 21358                        .HasColumnType("INTEGER");
 21359
 21360                    b.Property<bool>("EnableLocalPassword")
 21361                        .HasColumnType("INTEGER");
 21362
 21363                    b.Property<bool>("EnableNextEpisodeAutoPlay")
 21364                        .HasColumnType("INTEGER");
 21365
 21366                    b.Property<bool>("EnableUserPreferenceAccess")
 21367                        .HasColumnType("INTEGER");
 21368
 21369                    b.Property<bool>("HidePlayedInLatest")
 21370                        .HasColumnType("INTEGER");
 21371
 21372                    b.Property<long>("InternalId")
 21373                        .HasColumnType("INTEGER");
 21374
 21375                    b.Property<int>("InvalidLoginAttemptCount")
 21376                        .HasColumnType("INTEGER");
 21377
 21378                    b.Property<DateTime?>("LastActivityDate")
 21379                        .HasColumnType("TEXT");
 21380
 21381                    b.Property<DateTime?>("LastLoginDate")
 21382                        .HasColumnType("TEXT");
 21383
 21384                    b.Property<int?>("LoginAttemptsBeforeLockout")
 21385                        .HasColumnType("INTEGER");
 21386
 21387                    b.Property<int>("MaxActiveSessions")
 21388                        .HasColumnType("INTEGER");
 21389
 21390                    b.Property<int?>("MaxParentalAgeRating")
 21391                        .HasColumnType("INTEGER");
 21392
 21393                    b.Property<bool>("MustUpdatePassword")
 21394                        .HasColumnType("INTEGER");
 21395
 21396                    b.Property<string>("Password")
 21397                        .HasMaxLength(65535)
 21398                        .HasColumnType("TEXT");
 21399
 21400                    b.Property<string>("PasswordResetProviderId")
 21401                        .IsRequired()
 21402                        .HasMaxLength(255)
 21403                        .HasColumnType("TEXT");
 21404
 21405                    b.Property<bool>("PlayDefaultAudioTrack")
 21406                        .HasColumnType("INTEGER");
 21407
 21408                    b.Property<bool>("RememberAudioSelections")
 21409                        .HasColumnType("INTEGER");
 21410
 21411                    b.Property<bool>("RememberSubtitleSelections")
 21412                        .HasColumnType("INTEGER");
 21413
 21414                    b.Property<int?>("RemoteClientBitrateLimit")
 21415                        .HasColumnType("INTEGER");
 21416
 21417                    b.Property<uint>("RowVersion")
 21418                        .IsConcurrencyToken()
 21419                        .HasColumnType("INTEGER");
 21420
 21421                    b.Property<string>("SubtitleLanguagePreference")
 21422                        .HasMaxLength(255)
 21423                        .HasColumnType("TEXT");
 21424
 21425                    b.Property<int>("SubtitleMode")
 21426                        .HasColumnType("INTEGER");
 21427
 21428                    b.Property<int>("SyncPlayAccess")
 21429                        .HasColumnType("INTEGER");
 21430
 21431                    b.Property<string>("Username")
 21432                        .IsRequired()
 21433                        .HasMaxLength(255)
 21434                        .HasColumnType("TEXT");
 21435
 21436                    b.HasKey("Id");
 21437
 21438                    b.ToTable("Users");
 21439                });
 440
 21441            modelBuilder.Entity("Jellyfin.Data.Entities.AccessSchedule", b =>
 21442                {
 21443                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21444                        .WithMany("AccessSchedules")
 21445                        .HasForeignKey("UserId")
 21446                        .OnDelete(DeleteBehavior.Cascade)
 21447                        .IsRequired();
 21448                });
 449
 21450            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21451                {
 21452                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21453                        .WithMany("DisplayPreferences")
 21454                        .HasForeignKey("UserId")
 21455                        .OnDelete(DeleteBehavior.Cascade)
 21456                        .IsRequired();
 21457                });
 458
 21459            modelBuilder.Entity("Jellyfin.Data.Entities.HomeSection", b =>
 21460                {
 21461                    b.HasOne("Jellyfin.Data.Entities.DisplayPreferences", null)
 21462                        .WithMany("HomeSections")
 21463                        .HasForeignKey("DisplayPreferencesId")
 21464                        .OnDelete(DeleteBehavior.Cascade)
 21465                        .IsRequired();
 21466                });
 467
 21468            modelBuilder.Entity("Jellyfin.Data.Entities.ImageInfo", b =>
 21469                {
 21470                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21471                        .WithOne("ProfileImage")
 21472                        .HasForeignKey("Jellyfin.Data.Entities.ImageInfo", "UserId");
 21473                });
 474
 21475            modelBuilder.Entity("Jellyfin.Data.Entities.ItemDisplayPreferences", b =>
 21476                {
 21477                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21478                        .WithMany("ItemDisplayPreferences")
 21479                        .HasForeignKey("UserId")
 21480                        .OnDelete(DeleteBehavior.Cascade)
 21481                        .IsRequired();
 21482                });
 483
 21484            modelBuilder.Entity("Jellyfin.Data.Entities.Permission", b =>
 21485                {
 21486                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21487                        .WithMany("Permissions")
 21488                        .HasForeignKey("Permission_Permissions_Guid");
 21489                });
 490
 21491            modelBuilder.Entity("Jellyfin.Data.Entities.Preference", b =>
 21492                {
 21493                    b.HasOne("Jellyfin.Data.Entities.User", null)
 21494                        .WithMany("Preferences")
 21495                        .HasForeignKey("Preference_Preferences_Guid");
 21496                });
 497
 21498            modelBuilder.Entity("Jellyfin.Data.Entities.DisplayPreferences", b =>
 21499                {
 21500                    b.Navigation("HomeSections");
 21501                });
 502
 21503            modelBuilder.Entity("Jellyfin.Data.Entities.User", b =>
 21504                {
 21505                    b.Navigation("AccessSchedules");
 21506
 21507                    b.Navigation("DisplayPreferences");
 21508
 21509                    b.Navigation("ItemDisplayPreferences");
 21510
 21511                    b.Navigation("Permissions");
 21512
 21513                    b.Navigation("Preferences");
 21514
 21515                    b.Navigation("ProfileImage");
 21516                });
 517#pragma warning restore 612, 618
 21518        }
 519    }
 520}