All files / src/models database.ts

70% Statements 7/10
60% Branches 3/5
50% Functions 2/4
77.77% Lines 7/9

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77      1x 1x           1x             1x         1x                                                                                       4x   4x                
import { Model } from './model';
import { Game } from './game';
 
export namespace IDatabase {
  export const Cpu = [
    { label: '0.1', value: 0.1 },
    { label: '0.25', value: 0.25 },
    { label: '0.5', value: 0.5 },
    { label: '1', value: 1 },
  ];
  export const Memory = [
    { label: '250 MB', value: 250 * 1000 * 1000 },
    { label: '500 MB', value: 500 * 1000 * 1000 },
    { label: '1 GB', value: 1 * 1000 * 1000 * 1000 },
    { label: '2.5 GB', value: 2.5 * 1000 * 1000 * 1000 },
    { label: '5 GB', value: 5.0 * 1000 * 1000 * 1000 },
  ];
  export const Replicas = [
    { label: '1', value: 1 },
    { label: '3', value: 3 },
    { label: '5', value: 5 },
  ];
  export const Storage = [
    { label: '5 GB', value: 5 * 1000 * 1000 * 1000 },
    { label: '10 GB', value: 10 * 1000 * 1000 * 1000 },
    { label: '20 GB', value: 20 * 1000 * 1000 * 1000 },
  ];
 
  export interface Status {
    components?: StatusComponent[];
    nodes?: StatusNode[];
    phase: string;
    version?: string;
  }
 
  export interface StatusComponent {
    current: number;
    name: string;
    phase: string;
    total: number;
  }
 
  export interface StatusNode {
    _id: string;
    displayName: string;
    phase: string;
  }
}
 
export class Database extends Model {
  public _id: string;
  public cpu: number;
  public createdAt: Date;
  public game: Game;
  public gameId: string;
  public preemptible: boolean;
  public memory: number;
  public name: string;
  public namespaceId: string;
  public replicas: number;
  public restartedAt: Date;
  public status: IDatabase.Status;
  public storage: number;
  public updatedAt: Date;
 
  constructor(params: Partial<Database> = {}) {
    super(params);
 
    this.game = this.game ? new Game(this.game) : null;
  }
 
  public static isRestartRequired(fields: string[]) {
    const immutableFields = ['cpu', 'memory', 'preemptible', 'replicas', 'restartedAt', 'storage'];
    return immutableFields.some(i => fields.includes(i));
  }
}