This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from NCAR/codecov-workflows
Gir release 2 - Josh
- Loading branch information
Showing
8 changed files
with
224 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Codecov Coverage | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- codecov-workflows | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Checkout code | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
# Setup .NET environment | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 6.0.x # Use the version your project requires | ||
|
||
# Restore dependencies | ||
- name: Restore dependencies | ||
run: dotnet restore | ||
|
||
# Build the project | ||
- name: Build | ||
run: dotnet build --no-restore | ||
|
||
# Step 5: Run tests and collect code coverage | ||
- name: Test and calculate coverage | ||
run: | | ||
dotnet test --no-build --verbosity normal \ | ||
/p:CollectCoverage=true /p:CoverletOutputFormat=opencover \ | ||
/p:CoverletOutput=./TestResults/coverage.opencover.xml | ||
# Step 6: Upload the code coverage report to Codecov | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} # Add the Codecov token in the GitHub secrets | ||
files: ./TestResults/coverage.opencover.xml # Ensure the correct path for the coverage file | ||
flags: unittests | ||
fail_ci_if_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<RunSettings> | ||
<DataCollectionRunSettings> | ||
<DataCollectors> | ||
<DataCollector friendlyName="XPlat Code Coverage"> | ||
<Configuration> | ||
<Format>opencover</Format> | ||
<OutputDirectory>./TestResults</OutputDirectory> | ||
<Include>[Tests*]*</Include> | ||
</Configuration> | ||
</DataCollector> | ||
</DataCollectors> | ||
</DataCollectionRunSettings> | ||
</RunSettings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
import { useEffect, useState } from 'react'; | ||
import axios from 'axios'; | ||
import Button from '@mui/material/Button'; | ||
import Box from '@mui/material/Box'; | ||
import Typography from '@mui/material/Typography'; | ||
import Modal from '@mui/material/Modal'; | ||
import { Footer } from '../Components/HeaderFooter'; | ||
|
||
interface User { | ||
id: string; | ||
name: string; | ||
email: string; | ||
role: 'unverified' | 'verified' | 'admin'; // Define the possible roles | ||
} | ||
|
||
const RoleManagement = () => { | ||
const [users, setUsers] = useState<User[]>([]); | ||
const [selectedUser, setSelectedUser] = useState<User | null>(null); | ||
const [roleModalOpen, setRoleModalOpen] = useState(false); | ||
|
||
const handleRoleModalOpen = (user: User) => { | ||
setSelectedUser(user); | ||
setRoleModalOpen(true); | ||
}; | ||
|
||
const handleRoleModalClose = () => { | ||
setSelectedUser(null); | ||
setRoleModalOpen(false); | ||
}; | ||
|
||
// Fetch users from the backend | ||
useEffect(() => { | ||
const fetchUsers = async () => { | ||
try { | ||
const response = await axios.get<User[]>('http://localhost:5173/api/User/all'); // Adjust the endpoint as needed | ||
setUsers(response.data); | ||
} catch (error) { | ||
console.error('Error fetching users:', error); | ||
} | ||
}; | ||
|
||
fetchUsers(); | ||
}, []); | ||
|
||
// Update user role | ||
const updateUserRole = async (userId: string, newRole: 'unverified' | 'verified' | 'admin') => { | ||
try { | ||
await axios.patch(`/api/users/${userId}`, { role: newRole }); // Adjust the endpoint as needed | ||
setUsers(prevUsers => | ||
prevUsers.map(user => | ||
user.id === userId ? { ...user, role: newRole } : user | ||
) | ||
); | ||
handleRoleModalClose(); | ||
} catch (error) { | ||
console.error('Error updating user role:', error); | ||
} | ||
}; | ||
|
||
const style = { | ||
position: 'absolute' as 'absolute', | ||
top: '50%', | ||
left: '50%', | ||
transform: 'translate(-50%, -50%)', | ||
width: 400, | ||
bgcolor: 'background.paper', | ||
border: '2px solid #000', | ||
boxShadow: 24, | ||
p: 4, | ||
}; | ||
|
||
return ( | ||
<section> | ||
<Box sx={{ width: '100%', maxWidth: 700, mb: 4 }}> | ||
<Typography variant="h2" sx={{ color: 'black' }}> | ||
Role Management | ||
</Typography> | ||
</Box> | ||
|
||
<div> | ||
{users.map(user => ( | ||
<Box key={user.id} sx={{ bgcolor: '#C3D7EE', padding: 2, marginBottom: 2 }}> | ||
<Typography variant="h6">{user.name}</Typography> | ||
<Typography variant="body1">Email: {user.email}</Typography> | ||
<Typography variant="body2">Role: {user.role}</Typography> | ||
<Button | ||
variant='contained' | ||
onClick={() => handleRoleModalOpen(user)} | ||
sx={{ width: '50%' }} | ||
> | ||
Change Role | ||
</Button> | ||
</Box> | ||
))} | ||
</div> | ||
|
||
<Modal open={roleModalOpen} onClose={handleRoleModalClose}> | ||
<Box sx={style}> | ||
<Typography variant="h4">Change Role</Typography> | ||
{selectedUser && ( | ||
<> | ||
<Typography variant="body1">User: {selectedUser.name}</Typography> | ||
<Typography variant="body2">Current Role: {selectedUser.role}</Typography> | ||
|
||
<Button | ||
variant="contained" | ||
onClick={() => updateUserRole(selectedUser.id, 'verified')} | ||
sx={{ margin: '8px' }} | ||
> | ||
Set to Verified | ||
</Button> | ||
<Button | ||
variant="contained" | ||
onClick={() => updateUserRole(selectedUser.id, 'admin')} | ||
sx={{ margin: '8px' }} | ||
> | ||
Set to Admin | ||
</Button> | ||
<Button | ||
variant="contained" | ||
onClick={() => updateUserRole(selectedUser.id, 'unverified')} | ||
sx={{ margin: '8px' }} | ||
> | ||
Set to Unverified | ||
</Button> | ||
</> | ||
)} | ||
</Box> | ||
</Modal> | ||
|
||
<div> | ||
<Footer /> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default RoleManagement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.