Skip to content

Commit

Permalink
Merge pull request #165 from Uniandes-isis2603/wrthwtjh
Browse files Browse the repository at this point in the history
ciclo3
  • Loading branch information
nacevedo authored May 17, 2017
2 parents d1e7e47 + 81b1f29 commit 499f125
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,11 @@ public void createUsuarioTest() throws BusinessLogicException {
Assert.assertEquals(result.getApellidos(), entity.getApellidos());
Assert.assertEquals(result.getCondicionFisica(), entity.getCondicionFisica());
Assert.assertEquals(result.getFechaNaciemiento().getDay(), entity.getFechaNaciemiento().getDay());
Assert.assertEquals(result.getFechaNaciemiento().getMonth(), entity.getFechaNaciemiento().getMonth());
Assert.assertEquals(result.getExperiencia(), entity.getExperiencia());
Assert.assertEquals(result.getFormacion(), entity.getFormacion());
Assert.assertEquals(result.getGuia(), entity.getGuia());

}


Expand Down Expand Up @@ -202,6 +207,10 @@ public void getUsuarioTest() {
Assert.assertEquals(resultEntity.getApellidos(), entity.getApellidos());
Assert.assertEquals(resultEntity.getCondicionFisica(), entity.getCondicionFisica());
Assert.assertEquals(resultEntity.getFechaNaciemiento().getDay(), entity.getFechaNaciemiento().getDay());
Assert.assertEquals(resultEntity.getFechaNaciemiento().getMonth(), entity.getFechaNaciemiento().getMonth());
Assert.assertEquals(resultEntity.getExperiencia(), entity.getExperiencia());
Assert.assertEquals(resultEntity.getFormacion(), entity.getFormacion());
Assert.assertEquals(resultEntity.getGuia(), entity.getGuia());
}
/**
* Prueba encontrar un usuario que no existe
Expand Down Expand Up @@ -288,5 +297,9 @@ public void updateUsuarioTest() throws BusinessLogicException {
Assert.assertEquals(pojoEntity.getApellidos(), resp.getApellidos());
Assert.assertEquals(pojoEntity.getCondicionFisica(), resp.getCondicionFisica());
Assert.assertEquals(pojoEntity.getFechaNaciemiento().getDay(), resp.getFechaNaciemiento().getDay());
Assert.assertEquals(pojoEntity.getFechaNaciemiento().getMonth(), resp.getFechaNaciemiento().getMonth());
Assert.assertEquals(pojoEntity.getExperiencia(), resp.getExperiencia());
Assert.assertEquals(pojoEntity.getFormacion(), resp.getFormacion());
Assert.assertEquals(pojoEntity.getGuia(), resp.getGuia());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,19 @@ <h1 class="text-center"><span class="glyphicon glyphicon-tree-deciduous"></span>
<br>
<label class="control-label col-sm-3" >Condicion fisica</label>
<div class="col-sm-7">
<input type="date" class="form-control" ng-model="condicionFisicaElegido">
<input type="Number" class="form-control" ng-model="condicionFisicaElegido">
</div>
<br>
<br>
<label class="control-label col-sm-3" >Experiencia</label>
<div class="col-sm-7">
<input type="String" class="form-control" ng-model="experienciaElegido">
</div>
<br>
<br>
<label class="control-label col-sm-3" >Fecha de nacimiento</label>
<div class="col-sm-7">
<input type="date" class="form-control" ng-model="fechaNacimientoElegido">
</div>
<br>
<br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ <h1 class="mainTitle">* U S U A R I O - E S P E C I F I C O *</h1>
<th>Login</th>

<th>Formacion</th>
<th>Experiencia</th>
<th>Es guia ? </th>


Expand All @@ -20,6 +21,7 @@ <h1 class="mainTitle">* U S U A R I O - E S P E C I F I C O *</h1>
<td>{{currentUsuario.login}}</td>

<td>{{currentUsuario.formacion}}</td>
<td>{{currentUsuario.experiencia}}</td>
<td>{{currentUsuario.guia}}</td>
<td><a ui-sref="visitasList">Ver visitas de este usuario</a></td>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
$scope.loginElegido = 0;
$scope.condicionFisicaElegido = 0;
$scope.guiaElegido = false;
$scope.experienciaElegido = "";


$scope.saveUsuario = function (){
Expand All @@ -79,7 +80,8 @@
"formacion":$scope.formacionElegido,
"login": $scope.loginElegido,
"condicionFisica": $scope.condicionFisicaElegido,
"guia": $scope.guiaElegido
"guia": $scope.guiaElegido,
"experiencia": $scope.experienciaElegido
};
putUsuario($scope.agregarUsuario);
$state.go('usuariosList');
Expand Down

0 comments on commit 499f125

Please sign in to comment.