All files / src/hooks useCIAOptions.ts

99.47% Statements 189/190
90% Branches 18/20
100% Functions 8/8
99.47% Lines 189/190

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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231                                                        1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x   1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x   1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x   1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x   1x   38x 38x 38x 38x   38x 10x 10x 2x 10x 2x 10x 2x 10x 2x 10x 2x 10x   10x 10x   38x 5x 5x 5x 5x   5x 5x 15x 15x 15x 5x   5x 5x   38x 2x 2x   38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x 38x   1x  
import { SecurityLevel } from "../types/cia";
 
export type ROIType = "NONE" | "LOW" | "MODERATE" | "HIGH" | "VERY_HIGH";
 
export interface ROIData {
  returnRate: string;
  recommendation: string;
  description: string;
  value?: string; // Make value optional since it's used in tests
  potentialSavings?: string; // Add optional property used in tests
  breakEvenPeriod?: string; // Add optional property used in tests
}
 
export interface CIAOptionDetails {
  value: number;
  description: string;
  technical?: string;
  businessImpact?: string;
  capex?: number;
  opex?: number;
  recommendations?: string[];
  impact?: string;
  fte?: number;
  bg?: string; // Add optional bg property used in tests
  text?: string; // Add optional text property used in tests
}
 
// Export these constants directly so they can be imported without calling the hook
export const availabilityOptions: Record<SecurityLevel, CIAOptionDetails> = {
  None: {
    value: 0,
    description: "No availability requirements",
    technical: "",
    capex: 0,
    opex: 0,
  },
  Low: {
    value: 1,
    description: "Minimal availability requirements",
    technical: "",
    capex: 25000,
    opex: 10000,
  },
  Moderate: {
    value: 2,
    description: "Standard availability requirements",
    technical: "",
    capex: 50000,
    opex: 20000,
  },
  High: {
    value: 3,
    description: "High availability requirements",
    technical: "",
    capex: 75000,
    opex: 30000,
  },
  "Very High": {
    value: 4,
    description: "Maximum availability requirements",
    technical: "",
    capex: 100000,
    opex: 40000,
  },
};
 
export const integrityOptions: Record<SecurityLevel, CIAOptionDetails> = {
  None: {
    value: 0,
    description: "No integrity requirements",
    technical: "",
    capex: 0,
    opex: 0,
  },
  Low: {
    value: 1,
    description: "Minimal integrity requirements",
    technical: "",
    capex: 25000,
    opex: 10000,
  },
  Moderate: {
    value: 2,
    description: "Standard integrity requirements",
    technical: "",
    capex: 50000,
    opex: 20000,
  },
  High: {
    value: 3,
    description: "High integrity requirements",
    technical: "",
    capex: 75000,
    opex: 30000,
  },
  "Very High": {
    value: 4,
    description: "Maximum integrity requirements",
    technical: "",
    capex: 100000,
    opex: 40000,
  },
};
 
export const confidentialityOptions: Record<SecurityLevel, CIAOptionDetails> = {
  None: {
    value: 0,
    description: "No confidentiality requirements",
    technical: "",
    capex: 0,
    opex: 0,
  },
  Low: {
    value: 1,
    description: "Minimal confidentiality requirements",
    technical: "",
    capex: 25000,
    opex: 10000,
  },
  Moderate: {
    value: 2,
    description: "Standard confidentiality requirements",
    technical: "",
    capex: 50000,
    opex: 20000,
  },
  High: {
    value: 3,
    description: "High confidentiality requirements",
    technical: "",
    capex: 75000,
    opex: 30000,
  },
  "Very High": {
    value: 4,
    description: "Maximum confidentiality requirements",
    technical: "",
    capex: 100000,
    opex: 40000,
  },
};
 
export const ROI_ESTIMATES: Record<ROIType, ROIData> = {
  NONE: {
    returnRate: "0%",
    recommendation: "No investment recommended",
    description: "Investment in security measures is not necessary.",
  },
  LOW: {
    returnRate: "25%",
    recommendation: "Minimal investment recommended",
    description: "Basic security measures should be implemented.",
  },
  MODERATE: {
    returnRate: "50%",
    recommendation: "Moderate investment recommended",
    description: "Standard security measures should be implemented.",
  },
  HIGH: {
    returnRate: "75%",
    recommendation: "High investment recommended",
    description: "Advanced security measures should be implemented.",
  },
  VERY_HIGH: {
    returnRate: "100%",
    recommendation: "Maximum investment recommended",
    description: "Comprehensive security measures should be implemented.",
  },
};
 
export const useCIAOptions = () => {
  // Use the exported constants directly
  const getAvailabilityOptions = () => availabilityOptions;
  const getIntegrityOptions = () => integrityOptions;
  const getConfidentialityOptions = () => confidentialityOptions;
  const getROIEstimates = () => ROI_ESTIMATES;
 
  const getROIEstimateForSecurityLevel = (level: SecurityLevel): ROIType => {
    switch (level) {
      case "None":
        return "NONE";
      case "Low":
        return "LOW";
      case "Moderate":
        return "MODERATE";
      case "High":
        return "HIGH";
      case "Very High":
        return "VERY_HIGH";
      default:
        return "NONE";
    }
  };
 
  const getCombinedROIKey = (
    confidentiality: SecurityLevel,
    integrity: SecurityLevel,
    availability: SecurityLevel
  ): ROIType => {
    // Simple algorithm to determine combined ROI level based on CIA levels
    const levels = [confidentiality, integrity, availability];
    const highestLevel = levels.reduce((highest, current) => {
      const currentValue = confidentialityOptions[current]?.value || 0;
      const highestValue = confidentialityOptions[highest]?.value || 0;
      return currentValue > highestValue ? current : highest;
    }, "None" as SecurityLevel);
 
    return getROIEstimateForSecurityLevel(highestLevel);
  };
 
  const getROIDataForCombinedKey = (key: ROIType): ROIData => {
    return ROI_ESTIMATES[key] || ROI_ESTIMATES.NONE;
  };
 
  return {
    availabilityOptions,
    integrityOptions,
    confidentialityOptions,
    ROI_ESTIMATES,
    getAvailabilityOptions,
    getIntegrityOptions,
    getConfidentialityOptions,
    getROIEstimates,
    getROIEstimateForSecurityLevel,
    getCombinedROIKey,
    getROIDataForCombinedKey,
  };
};
 
export default useCIAOptions;