Skip to content

hobbit1983/SHAREDemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Initial Config

Download galasactl

galasactl is available on github https://github.com/galasa-dev/cli/ (or within the isolated package at https://resources.galasa.dev) for the following platforms:

  • MacOS (both Intel and ARM architecture)
  • Windows
  • Linux
  • z/OS

##Initialise Galasa

galasactl local init --log -

Create a project

galasactl project create --package sample.project --obr --maven --log -

Build the test project

Change into the test project directory (/sample.project.feature1) then issue

mvn clean install

Run a test

galasactl runs submit local --obr mvn:sample.project/sample.project.obr/0.0.1-SNAPSHOT/obr --class sample.project.feature1/sample.project.feature1.TestFeature1 --log -

Connect to 3270

pom updates

		<dependency>
			<groupId>dev.galasa</groupId>
			<artifactId>dev.galasa.zos3270.manager</artifactId>
			<scope>provided</scope>
		</dependency>

Test Objects

@Zos3270Terminal
	public ITerminal terminal;

CPS Updates

# Plex2
zos.dse.tag.PRIMARY.imageid=MV2D
zos.dse.tag.PRIMARY.clusterid=PLEX2
zos.cluster.PLEX2.images=MV2D

zos.image.MV2D.default.hostname=winmvs2d.hursley.ibm.com
zos.image.MV2D.ipv4.hostname=winmvs2d.hursley.ibm.com
zos.image.MV2D.sysplex=PLEX2
zos.image.MV2D.telnet.port=23
zos.image.MV2D.telnet.tls=false

Credentials

In credentials.properties add:

secure.credentials.ZOS.username=YATESW
secure.credentials.ZOS.password=<<password>>

Test code

@Test
	public void mainframeTest() throws Exception{
		terminal.waitForTextInField("HIT ENTER FOR LATEST STATUS");
		terminal.reportScreen();

		terminal.type("logon applid(IYK2ZNB5)").enter().waitForTextInField("CICS FOR GALASA TEST");
		terminal.waitForKeyboard().clear().waitForKeyboard();
		terminal.type("TSQT").enter();

		assertThat(terminal.searchText("HELLO WORLD")).isTrue();
	}

Adding CICS

pom updates

<dependency>
			<groupId>dev.galasa</groupId>
			<artifactId>dev.galasa.cicsts.manager</artifactId>
			<scope>provided</scope>
		</dependency>
        

CPS updates

cicsts.provision.type=DSE
cicsts.dse.tag.REGION.applid=IYK2ZNB5
cicsts.dse.tag.REGION.imageid=MV2D
cicsts.default.logon.initial.text=HIT ENTER FOR LATEST STATUS
cicsts.default.logon.gm.text=******\\(R)

New Test objects

@CicsRegion(cicsTag = "REGION")
	public ICicsRegion region;

	@CicsTerminal(cicsTag = "REGION")
	public ICicsTerminal cicsTerminal;

#Test updates

@Test
	public void mainframeTest() throws Exception{
		cicsTerminal.type("TSQT").enter();

		assertThat(cicsTerminal.searchText("HELLO WORLD")).isTrue();
	}
@Test
	public void mainframeTest() throws Exception{
		cicsTerminal.type("TSQT").enter();

		assertThat(cicsTerminal.searchText("HELLO WORLD")).isTrue();
		cicsTerminal.clear().wfk().type("CECI").enter().waitForKeyboard();

		region.ceci().issueCommand(cicsTerminal, "CECI READQ TS QUEUE('GALASA') INTO(&DATA)");
		String response = region.ceci().retrieveVariableText(cicsTerminal, "DATA");
		assertThat(response).contains("HELLO WORLD");
	}

About

Demo Material for SHARE

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages